<!--
// ===========================================================================
// FUNCTION TO OPEN POPUPS
// ===========================================================================

function openWin(pageURL,w,h){
	l = (screen.width) ? (screen.width-w)/2 : 0;
	t = (screen.height) ? (screen.height-h)/2 : 0;
	popUpWin = window.open(pageURL,'pop','width='+w+',height='+h+',left='+l+',top='+t+',scrollbars=yes,toolbar=no,resizable=no');
	popUpWin.focus();
}
function popupWin(pageURL,w,h,s){
	l = (screen.width) ? (screen.width-w)/2 : 0;
	t = (screen.height) ? (screen.height-h)/2 : 0;
	popUpWin = window.open(pageURL,'pop','width='+w+',height='+h+',left='+l+',top='+t+',scrollbars='+s+',toolbar=no,resizable=no');
	popUpWin.focus();
}

function openPrintWin(pageURL,w,h,f){
	l = (screen.width) ? (screen.width-w)/2 : 0;
	t = (screen.height) ? (screen.height-h)/2 : 0;
	popUpWin = window.open(pageURL,'pop2','width='+w+',height='+h+',left='+l+',top='+t+f+'');
	popUpWin.focus();
}

-->
