function ClickCoupon(val)
{
	var coupondiv = document.getElementById("coupondiv");
	if (val == 'show')
	{
		coupondiv.style.display = "";
		coupondiv.innerHTML = 
		"<table cellpadding=0 cellspacing=0 background=/img/top/coupon_ready.gif width=455 height=187><tr><td onclick=ClickCoupon('close')></td></tr></table>";
	}
	else
	{
		coupondiv.style.display = "none";
	}
	
}