function clearstatus()
{
	window.status='';
	return true;
}

if (document.layers)
	document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover = clearstatus;
document.onmouseout = clearstatus;
