function openWin (strTemplate, intWidth, intHeight) {
	objWindow = open (strTemplate, 'openWin', 'width=' + intWidth + ',height=' + intHeight + ',toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1');
	objWindow.moveTo(screen.width / 2 - 435, screen.height / 2 - 350);
	return 1;
}
function openWin_noscroll (strTemplate, intWidth, intHeight) {
	objWindow = open (strTemplate, 'openWin', 'width=' + intWidth + ',height=' + intHeight + ',toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1');
	objWindow.moveTo(screen.width / 2 - intWidth / 2, screen.height / 2 - intHeight / 2);
	return 1;
}
