
function _hidestatus(){window.status=''
return true}
function _changestatus(){window.status='';setTimeout("_changestatus()",10);}
if(document.layers)
document.captureEvents(Event.MOUSEOVER|Event.MOUSEOUT)
document.onmouseover=_hidestatus
document.onmouseout=_hidestatus
setTimeout("_changestatus()",100);