function P7_Uberlink(cl,d){
    var i,ob,tA,h=document.location.href;
    if(document.getElementById){
    ob=(d)?document.getElementById(d):document;
    if(ob){
    tA=ob.getElementsByTagName('A');
    for(i=0;i<tA.length;i++){
      if(tA[i].href==h){
      tA[i].className=cl;
}}}}
ConvertCellsToLinks('header1');
}

function inActivation(cl,d){
    var i,ob,tA,h=document.location.href;
    if(document.getElementById){
    ob=document.getElementById(d)
    if(ob){
    tA=ob.getElementsByTagName('A');
    for(i=0;i<tA.length;i++){
      if(tA[i].href=="http://"+document.domain+"/cdcs.php" || tA[i].href=="https://"+document.domain+"/cdcs.php"){
      tA[i].className=cl;
}}}}
ConvertCellsToLinks('header1');
}
function ConvertCellsToLinks(xRowId){
        var cells = document.getElementById(xRowId).getElementsByTagName("td");
        for(i=0;i<cells.length;i++){
          var link = cells[i].getElementsByTagName("a")
          if(link.length == 1){
            cells[i].onclick = new Function("document.location.href='" + link[0].href + "'");
            cells[i].onmouseover = new Function("this.className='headerhighlight'");
            cells[i].onmouseout = new Function("this.className=''");
          }
        }
}