Full Screen Scroller

Html Stuff
To disable default scroller browser all you have to do is to define this style for your page. Right after the head tag insert
<style type="text/css">
body { margin: 0px; padding: 0px; overflow: auto; }
</style>
this will indicate that the body of our page will have 0px as padding and margin
and the overflow style is to disable the vertical and horizontal scroller
thats it for the html thing lets go to the next page to digg into the flash stuff

