
<!-- Begin

function resize()
{
  var screenw = window.screen.availWidth;
  var screenh = window.screen.availHeight;
  var maxh = 600;
  var maxw = 950;
  var newh;
  var content = document.getElementById('content');
  content.style.position = 'absolute';



  if(screenw <= maxw)
  {
  content.style.width = screenw-20;
  content.style.top = 5;
  newh = ((screenw-10)*maxh)/maxw;
  content.style.height = newh;
  }
  else
  {
  content.style.width = maxw;
  content.style.top = 5;
  content.style.left = (screenw-maxw)/2;
  content.style.height = maxh;

  }

}
//-->
