<!--
// Open remote window
// Author: TimeLord
var windowWidth;
var windowHeigth;

function openWin(windowURL,windowName,width,height,resizable ) {
	windowWidth=width; windowHeight=height;
	if (navigator.appName.indexOf("Netscape")>=0) {width-=12; height-=31;}
	else if(document.all) {width-=10; height-=29;}
	window.open(windowURL,windowName,'left=0,top=0,width='+width+',height='+height+',toolbar=0,location=0,directories=0,status=1,menuBar=1,scrollBars=0,' + resizable);
}
//-->