//
// Hides the window status bar on mouse over and mouse out events
//
function hidestatus() {
	window.status=''
	return true
}

if (document.layers) {
	document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
}

document.onmouseover=hidestatus
document.onmouseout=hidestatus