// requires "jquery.js"

$(function(){
	var w, h;
	var de = document.documentElement;
	var cw = window.innerWidth || self.innerWidth || (de && de.clientWidth) || document.body.clientWidth;
	var ch = window.innerHeight || self.innerHeight || (de && de.clientHeight) || document.body.clientHeight;
	var th = 60;
	var dw = 660;
	var dh = 600;
	var ew = 660;
	var eh = 660;

	w = (cw && (cw < dw ? cw : dw)) || dw;
	h = (ch && (ch < dh ? ch : dh)) || dh;
	$("a.link_to_discount").each(function(){
		$(this).attr("href", $(this).attr("href") + "?TB_iframe=true&height=" + (h - th) + "&width=" + w);
	});

	w = (cw && (cw < ew ? cw : ew)) || ew;
	h = (ch && (ch < eh ? ch : eh)) || eh;
	$("a.link_to_database").each(function(){
		$(this).attr("href", $(this).attr("href") + "?TB_iframe=true&height=" + (h - th) + "&width=" + w);
	});
})
