function show(id)
{
var obj = document.getElementById(id);
	obj.style.display = "";
}
function hide(id)
{
var obj = document.getElementById(id);
	obj.style.display = "none";
}
window.onload = function () 
{
	hide('more');
	hide('clos');
	hide('wel');
	show('more');
}

function peelcoupon1(){
window.open('coupon1.aspx','peel','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=1,width=600,height=400')
}
function peelcoupon2(){
window.open('coupon2.aspx','peel','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=1,width=600,height=400')
}