// JavaScript Document
 
function showCoupon(mer,cou)
{
	//alert("infun");
	dest = "../../couponhelp.php?coupon="+cou+"&merchant="+mer;
	var mh = 530;
	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);
TheWin.focus();

//TheWin = window.open(dest,"couponhelp","width=420,height=350,scrollbars=yes,resizable=yes");
}
function stripCharsInBag (s, bag)
{   
	var i;
    var returnString = "";
    for (i = 0; i < s.length; i++)
    {   
        var c = s.charAt(i);
        if (bag.indexOf(c) == -1) returnString += c;
    }
    return returnString;
}
