<!--
//===============================================================================================
// By Ping Chan  20050309
// Javascript for opening a new popup window
//===============================================================================================

function OpenPopup( targetURL, winName ){

	var popW = 520, popH = 400;
	var w = 400, h = 250;

	if ( typeof(window.screen.availWidth)=='number' && typeof(window.screen.availHeight)=='number') {

	   w = screen.availWidth;
	   h = screen.availHeight;

	}

	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	window.open(targetURL,winName,'location=yes,directories=yes,toolbar=yes,menubar=yes,scrollbars=yes,status=yes,resizable=yes,width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
	//window.open(targetURL,winName,'location=no,directories=no,toolbar=no,menubar=no,scrollbars=yes,status=no,resizable=yes,width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);

}

//===============================================================================================



//-->