
window.defaultStatus = ''

function mHover(newText)
{
	window.status = newText;
}

function openNewWindow(URLtoOpen, windowName, intWidth, intHeight)
{ 
	var intNewX;
	var intNewY;
	
	intNewX = (screen.width/2) - (intWidth/2);
	intNewY = (screen.height/2) - (intHeight/2);
	
	newWindow=window.open(URLtoOpen, windowName, "toolbar=yes ,scrollbars=yes, width=" + intWidth + ",height=" + intHeight + ",left=" + intNewX + ",top=" + intNewY ); 
	newWindow.focus();
}