<!--
function activeNavTag() { 
  // ******** THIS CODE BLOCK WILL EXAMINE THE PAGE LINKS AND SET THE CURRENT LINK A SPECIFIED COLOR
  var a_link = document.getElementById("navlist").getElementsByTagName("a");        // make an array of the A tags
  var p_link = (String(document.location)).toLowerCase(); // get the current page link
  for(var i=0; i < a_link.length; i++) {                  // parse thru the links array
    if ((String(a_link[i])).toLowerCase() == p_link) {    // compare array link to current link
      a_link[i].style.color='#FFFF00';              // set the color 
      a_link[i].style.background='#324497';                  // set the background image
      a_link[i].style.textDecoration='underline';           // set the border
    }//end if
  }//next
  return true;
  // ******** END CODE BLOCK ******** //
}//end onload
-->