function resizeMe()
{
	var currentInsideWidth = 0;
	var currentInsideHeight = 0;

	//document.body.style.overflow='hidden';

	if (document.all)
	{
		currentInsideWidth = window.document.body.clientWidth;
		currentInsideHeight = window.document.body.clientHeight;
	}
	else if (document.layers)
	{
		currentInsideWidth = window.innerWidth;
		currentInsideHeight = window.innerHeight;
	}
	else if (document.getElementById)
	{
		currentInsideWidth = window.innerWidth;
		currentInsideHeight = window.innerHeight;
	}
	
	window.resizeBy((800-currentInsideWidth),(800-currentInsideHeight));
}

function launchPopup()
{
var win=window.open('valentinesale.html','popwin','width=299,height=424,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
}
//launchPopup();

if (document.addEventListener) 
{
    document.addEventListener ("load",resizeMe,false);
} 
else if (document.attachEvent) 
{
    document.attachEvent ("onload",resizeMe);
}

