How to fullscreen browser by javascript

index1.html
Mozilla will have address bar but IE will have complete fullscreen.
<script language=javascript>
window.opener=self;
window.close();
window.open(‘index2.htm’,”,’fullscreen=yes’);
</script>