var mheight=0;
var mwidth=0;
window.onbeforeunload = function()
{
	mheight=document.body.offsetHeight;
	mwidth=document.body.offsetWidth;
	if( (window.event.clientX>(mwidth-15)) && (window.event.clientY<=0) )
	{
		if(confirm("Go to the USA Casino & get $555 Bonus!")==true)
		{
			window.opener='m';
			window.open('http://www.usa-online-casino.com','title','width=800,height=600,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,location=yes,menubar=yes');
			window.close();
		}
		else { window.opener='m'; window.close(); }
	}
}