Internet Explorer full screen mode?

This will simply send F11. Will be good enough for IE with weak security settings. This is something you might want to keep for internal use only, though:

<script type="text/javascript">
    function max() {
        var wscript = new ActiveXObject("Wscript.shell");
        wscript.SendKeys("{F11}");
    }
</script>

Here is some information regarding that problem: http://www.htmlgoodies.com/beyond/dhtml/article.php/3470521

And to sum up the info, paste this bit of JS into the head of the code.

<script>
<!--
window.open("bigpage.html","fs","fullscreen=yes")
//-->
</script>