<!-- new window function -->
function NewWindow(strURL, strWindowName, intHeight, intWidth) {
	var objNewWindow;
	var intScrHeight = screen.height;
	var intScrWidth = screen.width;
	
	var intX = (intScrHeight / 2) - (intHeight / 2);
	var intY = (intScrWidth / 2) - (intWidth / 2);
	
	
	objNewWindow = window.open(strURL, strWindowName, 'toolbar=0,scrollbars=1,location=0,resizable=no,statusbar=0,menubar=0,width=' + intWidth + ',height=' + intHeight);
	objNewWindow.moveTo(intY, intX);
}
