 function ShowCoupon(Str, Index)
{
	window.open("show_coupon.php?id=" + Str + "&IID=" + Index,"CouponWindow","left=10,top=10,width=400,height=400,scrollbars=yes");
}
function openPage(url,page_width,page_height)
{
	window.open(url,"_blank","width="+page_width+",height="+page_height+",scrollbars=1,resizable=1");
}
function show_sub(id){
	if (document.getElementById(id).style.display == ""){
	    show = "none";
		
	}
	else{
		show = "";
		}
	document.getElementById(id).style.display = show;
	
}

function goToPage(url)
{
	window.location.href=url;
}


//---------------------------------------------------------