    function HighlightListOn()
      { src = event.toElement;
        if (src.tagName == "LI" || src.tagName == "A" || src.tagName == "B") {
          src.style.listStyleImage = 'url(/directaccess/images/icons/li2.gif)';
          }
        if (src.tagName == "A") {
          src.oldcol = src.style.color;
          src.style.color = "red";
          alert(src.classid);
          }
        }
    function HighlightListOff()
      { src=event.fromElement;
        if (src.tagName == "LI" || src.tagName == "A" || src.tagName == "B") {
          src.style.listStyleImage = 'url(/directaccess/images/icons/li.gif)';
          }
        if (src.tagName == "A") {
          src.style.color = src.oldcol; 
          }
        }

     
    //Define global JS variables

    //CSS Workaround for "Active Link"
    function navfeedback() {
      var coll = document.all.tags("a");
      if (coll!=null) {
        for (i=0; i<coll.length; i++)
        if (coll[i].href == location) {
          coll[i].style.fontWeight="700";
          coll[i].style.color="black";
          coll[i].style.textDecoration="none";
          }
        }
      }

      
    //Auto-Redirect Functionality
      function redirect(RedirURL) {
      window.location = RedirURL;
      }


    //Select box Auto-Redirect Functionality
    function redirectSelect(aform) {
      window.location = aform.elements[0].options[aform.elements[0].selectedIndex].value;
      }
