<!--
  var theFooter;
  var Y;

  var W3CDom = (document.getElementById && !document.all) ? true:false
  var ieDom  = (document.all) ? true:false
  var nsDom  = (document.layers) ? true:false

  function MoveFooter()
  {
    if (window.opera)
    {
      theFooter = footer.style;
      Y = main.style.pixelHeight;
    }
    else if (document.getElementById)
    {
      Y = document.getElementById('main').offsetHeight;
      theFooter = document.getElementById('footer').style;
    }
    else if (document.all)
    {
      theFooter = footer.style;
      Y = footer.offsetHeight;
    }
    else if (document.layers)
    {
      theFooter = document.footer;
      Y = document.main.clip.height;
    }


    if (Y < 265)
      Y = 265;

    theFooter.top = 190 + Y;
  }

  function OpenWindow(sURL, iWidth, iHeight)
  {
      window.open(sURL, "NewWindow",
                  "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0," +
                  "width="+(iWidth+25)+",height="+(iHeight+35)+",left=10,top=10");
  }
//-->
