
<script language="JavaScript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
function moveover(txt) {
window.status = txt;
setTimeout("erase()",1000);
}
function erase() {
window.status="";
}
// -->
</script>
<center>
<a href="" onMouseOver="moveover('This will disappear in a little bit.');return true;">Put your mouse over here.</a>
</center>