
var newwindow;

function poplink(url)
{

	newwindow=window.open(url,'name','height=500,width=800,left=100,top=100,resizable=no,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}


function couponlink(url)
{

	newwindow=window.open(url,'name','height=460,width=450,left=300,top=100,resizable=no,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}

