function ShowCouponWindow(hidCouponPathID)
{
	var PageContentCell = document.getElementById("PageContentCell");
	
	var CouponWindow = document.getElementById("CouponWindow");
	var CouponWindowHeader = document.getElementById("CouponWindowHeader");
	var hidCouponPath = document.getElementById(hidCouponPathID);
	var CouponImage = document.getElementById("CouponImage");
	var CouponDiv = document.getElementById("CouponDiv");
	
	CouponImage.src = hidCouponPath.value;

	CouponWindow.style.display = "block";
	CouponWindow.style.width = eval(CouponImage.offsetWidth) + "px";
	CouponWindow.style.height = eval(CouponImage.offsetHeight + 45) + "px";
	
	CouponDiv.style.width = CouponImage.offsetWidth + "px";
	CouponDiv.style.height = eval(CouponImage.offsetHeight) + "px";
	
	scrollTo(0,0);

	//Brower Check
	if (!checkIt('compatible'))
	{
		//Display on user click
		CouponWindow.style.left = (document.body.offsetWidth - CouponWindow.offsetWidth) / 2;
		CouponWindow.style.top = (document.body.clientHeight - CouponWindow.offsetHeight) / 2;

		CouponWindowHeader.style.width = eval(CouponImage.offsetWidth - 25) + "px";
	
	} else {
		//Display on user click
		CouponWindow.style.left = (PageContentCell.offsetWidth - CouponWindow.offsetWidth) / 2;
		CouponWindow.style.top = (document.body.clientHeight - CouponWindow.offsetHeight) / 2  + document.body.scrollTop - 100;

		CouponWindowHeader.style.width = eval(CouponImage.offsetWidth - 22) + "px";
	}
}

function CloseCouponWindow() {
	CouponWindow = document.getElementById("CouponWindow");
	CouponWindow.style.display = "none";
}