<!--
//  Javascript by ZWYX.org
//
var theWindow = null;
function OpenTheWindow(theURL,theTarget,theWidth,theHeight,Scroll) {
	LeftPosition = (screen.width) ? (screen.width-theWidth)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-theHeight)/2 : 0;
	theSettings = 'height='+theHeight+',width='+theWidth+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+Scroll+',resizable=no'
	theWindow = window.open(theURL,theTarget,theSettings)
	}
// -->