// JavaScript Document
 
function goWin(mer,cou)
{
	//alert("infun");
	dest = "/couponhelp.php?coupon="+cou+"&merchant="+mer;
	var mh = 450;
	var mw = 420;
	TheWin = window.open(dest,'image','height=' + mh + ',width=' + mw + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	TheWin.resizeTo(mw+2,mh+30);
TheWin.focus();

	if(cou == 18720)
	{
		window.open('http://www.kaptest.com/oneoff/rebate/index.jhtml');
	}
	if(cou == 19606)
	{
		window.open('http://www.kaptest.com/oneoff/gsg/index.jhtml');
	}
		//TheWin = window.open(dest,"couponhelp","width=420,height=350,scrollbars=yes,resizable=yes");
}

function goDealWin(d)
{
	//alert("infun");
	dest = "/dealnow.php?deal="+d;
	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();
}

function checkpostedform()
 {
   if(document.forms[0].mct.value=="")  
    {
		alert("Please Select a Merchant !!!!!");
		document.forms[0].mct.focus();
		return false;
    }	
   return true;
 }
