<!--

function NewWindowCenter(
	linkPage
	,pageNm
	,wToolbar
	,wLocation
	,wDirectories
	,wSatus
	,wMenubar
	,wScrollbars
	,wResizable
	,wWidth
	,wHeight
)
{

	var wUrl		= linkPage;
	var wName		= pageNm;
	var wTop		= (screen.availHeight/2 - wHeight/2);
	var wLeft		= (screen.availWidth/2 - wWidth/2);
	var wProperties 	= "toolbars=" 		+ wToolbar
					+ ",location=" 	+ wLocation
					+ ",directories=" 	+ wDirectories
					+ ",status=" 		+ wSatus
					+ ",menubar=" 	+ wMenubar
					+ ",scrollbars=" 	+ wScrollbars
					+ ",resizable=" 	+ wResizable
					+ ",top=" 		+ wTop
					+ ",left=" 		+ wLeft
					+ ",width=" 		+ wWidth
					+ ",height=" 		+ wHeight;

	window.open(wUrl, wName, wProperties);

}


function hidestatus(){ 
window.status='' 
return true 
} 

if (document.layers) 
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT) 

document.onmouseover=hidestatus 
document.onmouseout=hidestatus 
//-->
