Open the borderless web page in full screen and resize the window
Author:Eve Cole
Update Time:2009-06-15 17:20:20
<!-- Add the following code to the <body> area -->
<script>
var tmp=window.open("about:blank","","fullscreen=1")
tmp.moveTo(100,100)
tmp.resizeTo(600,400)
tmp.focus()
tmp.location=" http://www.downcodes.com "
</script>