I was just cruising through the Xlinesoft Forums today and found a pretty cool javascript that someone had posted that will help you get more screen real estate in your backend applications that you hand off to your clients. This javascript just creates a button that they can click on that helps the backend seem a little bit more like an a desktop application by making the screen completely full and by removing a lot of browser elements. There are a lot of cool tricks and tips like this listed on the xlinesoft forums, the community there is very active and not afraid to share cool tricks they pick up.
1: <script>
2: <!--
3: function fullwin(){
4: window.open("bigpage.html","bfs","fullscreen,scrollbars")
5: }
6: //-->
7: </script>
8:
9: <center>
10: <form>
11: <input type="button" onClick="fullwin()" value="Open Full Screen Window">
12: </form>
13: </center>
Questions or Comments?