
	
var opl
	var left
	var top
	var screenres
	
if(screen.width==1024 && screen.height==768)
	opl="stor";
else if(screen.width==1152 && (screen.height==864 || screen.height==870))
	opl="xtra";
else if(screen.width==1280 && screen.height==768)
	opl="gigant";
else
	opl="lille";

if(opl=="gigant")
{
	left=200;
	top=25;
	}
else if(opl=="xtra")
{
	left=200;
	top=25;
}
else if(opl=="stor"){
	left=100;
	top=25;
}else if(opl=="lille"){
	left=85;
	top=25;
}

function writeSize(){
	return document.write("<body bgcolor=#006666 background='../images/9.gif' leftmargin=" + parseInt(left) + " topmargin=" +parseInt(top) + ">");
}

function PopWin(url,h,w){
		newWin=window.open(url,'nytVin', 'height='+h+ ',width='+w+',scrollbars=yes,status=no,resizable=no');
}


