<!--
	// Open a new window
	function OpenWindow(theURL, target, winwidth, winheight) { //v2.0
		var xposi = 0, yposi = 0;				// default values
		//var winwidth = 650, winheight= 200;		// default values
		if (document.all) var xMax = screen.width, yMax = screen.height;
		else if (document.layers) var xMax = window.outerWidth, yMax = window.outerHeight;
		xposi = xMax/2 - (winwidth/2)
		yposi = yMax/2 - (winheight/2)
	window.open(theURL,target,'screenX='+xposi+',screenY='+yposi+',top='+yposi+',left='+xposi+',width='+winwidth+',height='+winheight+',status=no, location=no,scrolling=yes, scrollbars=yes, toolbar=no');
	}

//-->