// JavaScript Document

//window.onclose = popup; 
//
//function popup() 
//{    
////	var answer = confirm ("Discount Coupon 10% OFF!\n----------------------------------\nOh, one more thing...\nWe would like to give you a Discount Coupon!\nDiscount Coupon: 56fe5491c5\nPlease, write it down...\nExpired on: 02/28/2009\nWould you like to use Discount Coupon?")
////	if (answer)
////	{
////		//window.open('http://www.onestopezshop.com/store/');
////		return "Please, click Cancel to continue to stay on onestopEZshop.com and use your Discount Coupon!\n--------------------------------------------\nDiscount Coupon: 56fe5491c5\nExpired on: 02/28/2009\n--------------------------------------------";
////	}
//	
///*	return "----------------------------------\nDiscount Coupon 10% OFF!\n----------------------------------\nOh, one more thing...\nWe would like to give you a Discount Coupon!\nDiscount Coupon: 56fe5491c5\nPlease, write it down...\nExpired on: 02/28/2009\nPlease, click Cancel to continue to stay on onestopEZshop.com and use your Discount Coupon!"*/
//
//	
//	
//} 

function createDiv() 
{ 
var _body = document.getElementsByTagName('body') [0];
var _div = document.createElement('div');
//_div.id = "idtest";
_div.style.cssText = 'position:fixed;top:0;left:0px;right:0;height:100%;width:20px;z-index:100000000;background:#CCCCCC;color:#0000FF;border-right:1px solid #0000FF;border-left:1px solid #0000FF;font-weight:bold;text-align: center;cursor:pointer;';
_div.innerHTML = "<br />D<br />I<br />S<br />C<br />O<br />U<br />N<br />T<br /><br />C<br />O<br />U<br />P<br />O<br />N<br /><br /><font color='#FF0000' style='font-size:8px;'>10%<br />OFF</font><font color='#FF0000'><br /><br />l<br />i<br />m<br />i<br />t<br />e<br />d<br /><br />t<br />i<br />m<br />e<br /><br />o<br />f<br />f<br />e<br />r</font>";
//var _text = document.createTextNode('Discount Coupon');
_div.onmouseover = function()
{
	//this.style.background = "#CCCCCC";	
	this.innerHTML = "<font color='#FF0000'><br />C<br />O<br />U<br />P<br />O<br />N<br />..</font><br /><br />5<br />6<br />f<br />e<br />5<br />4<br />9<br />1<br />c<br />5<br />";
}
_div.onclick = function()
{	
	//location.href = "http://www.onestopezshop.com/store/index.php?main_page=discount_coupon";
}
//_div.appendChild(_text);
_body.appendChild(_div);
}
window.onload = createDiv;
