Thanks to "Syntax Error" for this script. Here's his explanation: Hi There, Usually when someone moves his mouse over a link on your page you will get that ennoying message at your status bar telling you that that link is a short cut to some document at www.fake.com. Now, to get rid of that you can use the well known "onMouseOver="window.status" " in the anchor. But that text does not disappear until you move your mouse over another link !!! Well, to get rid of that text in your status bar put the following in your <head>&</head>tags SCRIPT: <script language="JavaScript"> <!-- Hide for the non capable function link(txt) { window.status = txt; setTimeout("erase()",2000); } function erase() { window.status=""; } // so far for the hiding part --> </script>
1998 Copyright (C) Next Step All Rights Reserved