//<!-- Begin
timerLength = 1.5
function writeStatus(str) {
 timeoutVal = timerLength * 2000;
 setTimeout("clearStatus()", timeoutVal);
 window.status = str
}
 function clearStatus() {
  window.status = "";
}
// End -->