// JavaScript Document
function adaptToClientScreen()
{
    var myWidth, myHeight;
    myWidth = screen.availWidth;
    myHeight = screen.availHeight;
    window.moveTo(0,0);
    window.resizeTo(myWidth,myHeight);
}

window.onload = adaptToClientScreen;