That is not a valid parameter of window.status to begin with, and wouldn't work even if used just by itself. You would need a separate function to give you that sort of capability. For example, have something like so in the head of the page:
Code:
<script type="text/javascript">
function status_timer (txt, ti){
window.status=txt;
setTimeout(function(){window.status=''}, ti);
}
</script>
Then you could do something like this:
Code:
<a href="#"
onmouseover="home.src='some.gif';status_timer('This is a test',8000);return false;"> . . .
Even so, many modern browsers are set to not allow manipulation of the status bar via javascript.
Bookmarks