Hi ()InDiGo)))>

There is no simple flipto full screen in javascript but you can do it by using finding out the resolution of the screen, move the browser to 0,0 and then making it the same size as the screen. use the following function to do this

Code:
<SCRIPT language="Javascript">
function maximize()
{
var Height = screen.height;
var Width =screen.width;

self.moveTo(0,0);
self.resizeTo(Width,Height);
}
</SCRIPT>
This will do it

Hope it helps

Ian