function getLeaf(url) {
  return url.substring(url.lastIndexOf("=")+1);
}

function CurrPageLinkHighLight() {
  var site=getLeaf(document.location.href);
  newLink(site);
}

function newLink(id)
{
  foundId = document.getElementById(id);

  if (foundId) {
    document.getElementById(id).style.color="#ff0000";
  }
}
