function openadv(theURL,width,height)
{
	if( theURL != "" )
	{
		if( width <= 0 || height <= 0 )
		{
			window.open(theURL,"Notice");
		}
		else
		{
			window.open(theURL,"Notice","menubar,toolbar,location,resizable,scrollbars,status,dependent,width="+width+",height="+height);
		}
		window.focus();
	}
}

var today=new Date();
var endday=new Date(2005,12,30);
if(today<endday) openadv("http://www.hpvsos.com");
