
<!-- ----------------------------------------------------------------------- -->

<!-- Open coupon popup window function -->
var newWindow;

function openCouponWin(url)
{
	var winTop = (screen.height / 2) - 145;
	var winLeft = (screen.width / 2) - 240;
	
	var windowFeatures = "width=480,height=291,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop + ",";
	windowFeatures = windowFeatures + "resizable,scrollbars";

	newWindow = window.open(url,"coup",windowFeatures);
	newWindow.focus();
	return false;
}
