Hmmm...
I think you would have to open it as a different window and set the properties to not put address bar or anything.
You can however get the rest of the screen by using:
javascript:moveTo(-4,-4);
window.resizeTo(screen.availWidth+8,screen.availHeight+8);
I don't know why but javascript robs you of a bit of the screen. You may have to mess with the exact numbers to get what you are looking for.
To make a window without address bar and all of that I beleive requires opening a new window. So it would be something like:
window.open('mypage.html', 'myWin',
'toolbar=no, directories=no, location=no,
status=yes, menubar=no, resizable=no, scrollbars=no,
width=800, height=600');
Of course you can change the Width and Height to screen.availWidth and screen.availHeight
I hope that gets it for you.
Travis Hawkins
BeachBum Software
travis@cfm2asp.com