<!--
  if (document.all)
  {
    if(document.documentElement.clientWidth<screen.availWidth||document.documentElement.clientHeight<screen.availHeight)
    {
      top.window.moveTo(0,0);
      top.window.resizeTo(screen.availWidth,screen.availHeight);
    }
  }
   else if (document.layers||document.getElementById)
  {
    if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
    {
      top.window.moveTo(0,0);
      top.window.outerHeight = screen.availHeight;
      top.window.outerWidth = screen.availWidth;
    }
  }
//-->
