// JavaScript Document
function couponcode(mer,cou)
{
	//alert("infun");
	dest = "couponhelp2.php?coupon="+cou+"&merchant="+mer;
	var mh = 300;
	var mw = 430;
	TheWin = window.open(dest,'image','height=' + mh + ',width=' + mw + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,screenX=150,screenY=150,top=100,left=150');
	TheWin.resizeTo(mw+2,mh+30);
	TheWin.focus();
}

function showDeal(d)
{
	//alert("infun");
	dest = "/dealhelp.php?deal="+d;
	//alert(dest);
	var mh = 450;
	var mw = 420;
	TheWin = window.open(dest,'image','height=' + mh + ',width=' + mw + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	TheWin.resizeTo(mw+2,mh+30);
	TheWin.focus();
}

