<!--

var prevElement;


function ShowSubAbou()
{
  document.getElementById("SubAbou").style.display= "block";
}


function ShowSubServ()
{
  document.getElementById("SubServ").style.display= "block";
}


function ShowSubWksh()
{
  document.getElementById("SubWksh").style.display= "block";
}


function ShowSubReso()
{
  document.getElementById("SubReso").style.display= "block";
}


function ShowSubNews()
{
  document.getElementById("SubNews").style.display= "block";
}


function HideSubs()
{
  document.getElementById("SubAbou").style.display= "none";
  document.getElementById("SubServ").style.display= "none";
  document.getElementById("SubWksh").style.display= "none";
  document.getElementById("SubReso").style.display= "none";
  document.getElementById("SubNews").style.display= "none";
}

function SubOn(srcElement)
{
  if (prevElement != null)
     prevElement.style.backgroundColor = "#F0F2F7";  //  light grey blue
  prevElement = srcElement;

  srcElement.style.backgroundColor = "#C2D4E7";  // medium blue
}


//-->
