Helpful to verify reports of your own downtime, or to double check a downed website you are trying to access.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
Earlier versions wouldn't work
<SCRIPT>
function doit()
{
if(navigator.appVersion>=4
{
sh=screen.availHeight;
sw=screen.availWidth;
ww=window.outerWidth;
wh=window.outerHeight;
dw=sw-ww;
dh=sh-wh;
// both browsers can moveTo()
window.moveTo(0,0);
// as NN4.04 at least have bug in resizeTo() we will use resizeBy()
// (actually it makes window larger than we asked for)
if(navigator.appName.index
{window.resizeBy(dw,dh);}
// as MIE don't understand outerWidth we can't use resizeBy and will use
// resizeTo which works perfectly in this browser
if(navigator.appName.index
{window.resizeTo(sw,sh);}
}
// for poor guys who are still using old browsers
else
{alert("Upgrade your browser!");}
}
</SCRIPT>
I noticed one more minor bug in NN4.04 at least.
Probably this is MY own installation problems, but after
resizeTo() or resizeBy() window loose menubar :(