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');
}}
ConvertCellsToLinks('header1');
}

function popupwin(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=500,height=350,screenX=150,screenY=150,top=150,left=150')
}

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=''");
          }
        }
}