

//========== HIDE THE LINK URL FROM THE STATUS BAR

	function hidestatus()
	{
	window.status=''
	return true
	}
	if (document.layers)
	document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
	document.onmouseover=hidestatus
	document.onmouseout=hidestatus
	
	function OpenWindow(ref,w,h) {
	   var w,h;
	   var window_left = (screen.width-700)/2;
	   var window_top = (screen.height-300)/2;   
	   window.open(ref,"OpenWin",'width=' + w +',height=' + h + ',status=no,scrollbars=yes,top=' + window_top + ',left=' + window_left + '');
	   }

	function openWinfromPop(URL,w,h) {
	var URL;
	var w,h;
	var PymStatus= 'location=no, directories=no, resizable=no, status=no, toolbar=no, menubar=no, width=' + w + ', height=' + h + ', scrollbars=no';
	CheckWin=window.open(URL, 'event',PymStatus);
	}