maximsing my browser window

liunx

Guest
Hello All,<br />
<br />
i recently posted a question regarding maximising my window...when i viewed my index.htm page in its browser it used to open maximised then all of a sudden for no reason when i opened the page again it didnt maximise...i had a few responses saying maybe the window wasnt maximised before i had closed it down and therefore it never opened maximised so i tried maximisng the window then closing it, this never solved the problem...is anyone aware of any code that will ensure my page opens maximised..if not does any one know how i can solve this problem????? <br />
<br />
All coments greatfully recieved<br />
<br />
Thanks <br />
Rob. :(<!--content-->I searched around and found this script:<br />
<br />
<script language="JavaScript1.2"><br />
<!--<br />
<br />
top.window.moveTo(0,0);<br />
if (document.all) {<br />
top.window.resizeTo(screen.availWidth,screen.availHeight);<br />
}<br />
else if (document.layers||document.getElementById) {<br />
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){<br />
top.window.outerHeight = screen.availHeight;<br />
top.window.outerWidth = screen.availWidth;<br />
}<br />
}<br />
//--><br />
</script><br />
<br />
Put it in each page that you want to be maximised.<!--content-->Goldilocks...thankyou very much you are a diamond <br />
<br />
:D<!--content-->One minor change; the very first line should be:<br />
<br />
<script language="JavaScript1.2" type="text/javascript"><!--content-->
 
Back
Top