<!--
function link (postid) {
whichpost = document.getElementById(postid);
if (whichpost.className=="on") { whichpost.className="off"; }
else { whichpost.className="on"; }
}
function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus
// -->
