<!--
  var theDiv;
  var W3CDom = (document.getElementById && (window.opera || !document.all)) ? true:false
  var ieDom  = (document.all && !window.opera) ? true:false
  var nsDom  = (document.layers) ? true:false

  function ChangeMenu(sObject)
  {

    GetDiv(sObject);

    if (theDiv.display == "block")
    {
      theDiv.display = "none";
    }
    else
    {
      theDiv.display = "block";
    }
  }

  function GetDiv(sObject)
  {
    if (ieDom)
    {
      theDiv = eval(sObject + '.style');
    }

    if (W3CDom)
    {
      theDiv = document.getElementById(sObject).style;
    }

    if (nsDom)
    {
      theDiv = eval('document.' + sObject);
    }
  }
  
  function OpenWindow(sURL, iWidth, iHeight)
  {
    window.open(sURL, "NewWindow",
                "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1," +
                "width="+(iWidth+25)+",height="+(iHeight+35)+",left=100,top=100");
  }

//-->

