{
var w=screen.width
var h=screen.height
var b=document.getElementById("Banner")

/*
if (w<800)
     {w=760}
else if (w<960)
     {w=560}
else if (w<1024)
     {w=920}
else if (w<1152)
     {w=964}
else if (w<1280)
     {w=1240}
else if (w<1600)
     {w=1560}
else
     {w=1560}

if (h<480)
     {}
else if (h<600)
     {}
else if (h<720)
     {}
else if (h<786)
     {}
else if (h<864)
     {}
else if (h<870)
     {}
else if (h<960)
     {}
else if (h<1024)
     {}
else if (h<1200)
     {}
else
     {}
*/    

w=screen.width* 95/100
h=screen.height * 65/100
document.body.style.width=w + "px"
document.body.style.height=h + "px"
//document.body.style.borderStyle="solid"
//document.body.style.borderWidth="1px"
//document.body.style.borderColor="black"
//document.body.style.paddingLeft="4px"
//document.body.style.paddingTop="4px"
//document.body.style.paddingRight="6px"
//document.body.style.paddingBottom="6px"

b.style.width="100%"
b.style.height="100%"
//document.write(document.body.style.width)
//document.write(b.style.width)
}
