Leaves a message in the status bar for a certain amount of time.
<script language="JavaScript">
<!-- Hide
function moveover(txt) {
window.status = txt;
setTimeout("erase()",1000);
}
function erase() {
window.status="";
}
// -->
</script>
<a href="" onMouseOver="moveover('Disappears........');return true;">Move pointer here.</a>
Return to the Java Scriptorium.