<!--
function createWindow(strURL, strName, intWidth, intHeight, strScroll) {
	if (window.screen) {
		intScreenWidth = screen.width;
		intScreenHeight = screen.height;
	}
        intLeft = (intScreenWidth - intWidth) / 2;
        intTop = (intScreenHeight - intHeight) / 2;	

	args = "width=" + intWidth + ",height=" + intHeight + ",left=" + intLeft + ", screenx=" + intLeft + ",top=" + intTop  + ", screeny=" + intTop + ",resizable=no,scrollbars=" + strScroll + ",status=0";
	remote = window.open(strURL, strName, args);
	if (remote != null) if (remote.opener == null) remote.opener = self;
	return remote;
}
//-->