Forum Moderators: open
The short answer - it's not possible. The look of the original window is not available to the author's javascript, only the user has that control.
If you're creating a dedicated application for a "captive audience", you can consider using signed scripts and getting universal browser privileges. But that's not going to cut it on a public website.
I basically got a re-directory web address, and it re-directs to my ISP webspace. This webspace contains my Dads name - therefore I dont want it displayed.
I've noticed on some websites scrolling text replacing the "Opening page [blah...] de blah" in the status bar.
How is this done?
Regards
Nick
<script type="text/javascript">
window.defaultStatus = "Your custom message here"
</script.
This will set the default status message -- but that default message will still be temporarily overwritten as needed, for instance, when there's a mouseover on a link.
You mentioned scrolling messages - you probably don't need scrolling (it's pretty distracting from the rest of your page, IMO) but there are many such scripts around the web. They usually depend on the setTimeout() method to continually redraw the defaultStatus message.