function writeStatus(str) {
var timerLength = 2.5;
var timeoutVal = (timerLength * 1000);
setTimeout ("clearStatus()", timeoutVal);
window.status = str;
return true;
}
function clearStatus() {
window.status = "";
return true;
}
