// Copyright Web3Graphics

if (document.all || document.layers)
{
  window.moveTo(0,0);
  window.resizeTo(screen.availWidth,screen.availHeight)
} else if (window.screen) {
  window.moveTo(0,0);
  window.outerHeight = screen.availHeight;
  window.outerWidth = screen.availWidth;
}

function largeNormal() {
document.body.style.fontSize="1em";
document.getElementById("mainDiv").style.height="8157px";
}

function largeLarge() {
document.body.style.fontSize="2em";
document.getElementById("mainDiv").style.height="21500px";
}

function largeLargest() {
document.body.style.fontSize="3em";
document.getElementById("mainDiv").style.height="43080px";
}
