function navMouseover(elem)
{
	//debugger;
	//alert ("elem.style = " + elem.style);
	elem.style.cssText = "background-color:#FFCC00;" +
            "border-bottom-width:1px;" +
            "border-bottom-style:solid;" +
            "border-bottom-color:#132539;" +
            "border-top-width:1px;" +
            "border-top-style:solid;" +
            "color:#000000;" +            
            "border-top-color:#000000;"
}
function navMouseout(elem)
{
	//debugger;
	//alert ("elem.style = " + elem.style);
	elem.style.cssText = ""
}

function navSelect(strID)
{
      var elemDiv = document.getElementById(strID);
      var bOk = true;

      if (elemDiv == null || typeof(elemDiv) != "object")
      {
         alert("Unable to activate DIV ID " + strID + ". Check your HTML ID values.");
         bOk = false;
      }
      
      if (bOk)
      {
         elemDiv.style.cssText = "background-color:#ffffff;" +
            "color:#000000;" + 
            "border-top-width:1px;" +
            "border-top-style:solid;" +
            "border-top-color:#61695C;"
		elemDiv.onmouseover = null;
		elemDiv.onmouseout = null;
      }
}