<!--
    Script to help dumb IE understand :hover on non-anchors.  In this case, we're specifically
    assigning mouseover events and a new css classname ("over") to li elements of the sidenav ul.
    -->
    <script language="JavaScript" type="text/javascript"><!--//--><![CDATA[//><!--
    startList = function() {
        if (document.all&&document.getElementById) {
            navRoot = document.getElementById("sidenav");
            for (i=0; i<navRoot.childNodes.length; i++) {
                node = navRoot.childNodes[i];
                if (node.nodeName=="LI") {
                    node.onmouseover=function() {
                        this.className+=" over";
                    }
                    node.onmouseout=function() {
                        this.className=this.className.replace(" over", "");
                    }
                }
            }
        }
    }
    window.onload=startList;
    
    //--><!]]></script>


  <script language="JavaScript" type="text/javascript">

   <!--

   function popup(URL, ww, wh) {

  	 day = new Date();

  	 id = day.getTime();

  	 eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ww+",height="+wh+",left = 40,top = 40');");

   }

   // -->

  </script>
