function menu_highlight(DivID)
{
   if(browser_ie)
   { 
       eval (DivID + '.style.backgroundColor="#528EA9"');
   }
   if(browser_ns4)
   { 
       eval ('document.' + DivID + '.backgroundColor="#528EA9"');
   }
   if(browser_ns6up)
   { 
       document.getElementById(DivID).style.backgroundColor="#528EA9";
   }   
}

function menu_unhighlight(DivID)
{
   if(browser_ie)
   { 
       eval (DivID + '.style.backgroundColor="#427489"');
   }
   if(browser_ns4)
   { 
       eval ('document.' + DivID + '.backgroundColor="#427489"');
   }
   if(browser_ns6up)
   { 
       document.getElementById(DivID).style.backgroundColor="#427489";
   }   
}