function Resize()
{
if (parseInt(navigator.appVersion)>3) {
if (navigator.appName=="Netscape") {
winW = window.innerWidth;
winH = window.innerHeight;
}
if (navigator.appName.indexOf("Microsoft")!=-1) {
winW = document.body.offsetWidth;
winH = document.body.offsetHeight;
}
}


if (winW < 950)
{
thediv = document.getElementById('MainDiv');
thediv.style.width="950px";
}
else
{
thediv = document.getElementById('MainDiv');
thediv.style.width="100%";
}

if (winH < 600)
{
thediv = document.getElementById('MainDiv');
thediv.style.height="600px";
}
else
{
thediv = document.getElementById('MainDiv');
thediv.style.height="100%";
}

}
