<!--
var couponWidth=536;
var couponHeight=362;
var couponX = (window.screen.availWidth-couponWidth)/2;
var couponY = (window.screen.availHeight-couponHeight)/2;
			
tmpImg = document.createElement("IMG");

function switchImages(img1,img2) {
	tmpImg.src = img1.src;
	img1.src = img2.src;
	img2.src = tmpImg.src;	
}

function setFocus(pObjId) {
	document.getElementById(pObjId).focus();
}

function resizeWindow(pWidth,pHeight) {
	window.resizeTo(pWidth,pHeight);
}

function is_ty()
{	
	var l = window.location.href
	if(l.match("ty=Y") == "ty=Y"){
		window.open('ty.htm','_blank','toolbar=no,menubar=no,scrollbars=no,resizable=no,titlebar=no,status=no,width=100,height=100,left='+couponX+',top='+couponY);
		}
	//window.location.href="main_hebrew.htm";
}
function resizeWindowBy(x,y) {
	window.resizeBy(x,y);
}

function openCoupon(pUrl) {
	window.open(pUrl,'_blank','toolbar=no,menubar=no,scrollbars=no,resizable=no,titlebar=no,status=no,width=100,height=100,left='+couponX+',top='+couponY);
	//window.open(pUrl,'_blank','toolbar=no,menubar=no,scrollbars=no,resizable=no,titlebar=no,status=no,left='+couponX+',top='+couponY);
}

function navigate(pUrl) {
	window.location.href = pUrl;
}

function sendM(pU,pD,pR) {
	window.location.href = 'mailto:' + pU + '@' + pD + '.' + pR;
}
-->