ok so i don’t know if i am posting this in the right section. i am posting here b/c i am using 2004. move as you wish.
anyways, my script that i am using to resize the browser to full screen works fine in ie and firefox, but not on safair. here is the script that i am using
<script language=“JavaScript1.2”>
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
</script>
any help is appreciated