//    <script type="text/javascript">
      window.onload = function(){
        ConvertRowsToLinks("table1");
      }
      
      function ConvertRowsToLinks(xTableId){

        var rows = document.getElementById(xTableId).getElementsByTagName("tr");
        var cols = document.getElementById(xTableId).getElementsByTagName("td");
   
        for(i=0;i<rows.length;i++){
        for(j=0;j<cols.length;j++){
          var link = cols[j].getElementsByTagName("a")
          if(link.length == 1){

if (cols[j].className == 'bo'){
           cols[j].onclick = new Function("document.location.href='" + link[0].href + "'");
         cols[j].onmouseover = new Function("this.className='highlight'");
          cols[j].onmouseout = new Function("this.className='bo'");
}
if (cols[j].className == 'bohalf'){
           cols[j].onclick = new Function("document.location.href='" + link[0].href + "'");
         cols[j].onmouseover = new Function("this.className='highlighth'");
          cols[j].onmouseout = new Function("this.className='bohalf'");
}

          }
        }

        }


        rows = document.getElementById('table2').getElementsByTagName("tr");
        cols = document.getElementById('table2').getElementsByTagName("td");
   
        for(i=0;i<rows.length;i++){
        for(j=0;j<cols.length;j++){
          var link = cols[j].getElementsByTagName("a")
          if(link.length == 1){
if (cols[j].className == 'bo'){
           cols[j].onclick = new Function("document.location.href='" + link[0].href + "'");
         cols[j].onmouseover = new Function("this.className='highlight'");
          cols[j].onmouseout = new Function("this.className='bo'");
}
if (cols[j].className == 'bohalf'){
           cols[j].onclick = new Function("document.location.href='" + link[0].href + "'");
         cols[j].onmouseover = new Function("this.className='highlighth'");
          cols[j].onmouseout = new Function("this.className='bohalf'");
}
          }
        }
        }



        rows = document.getElementById('table3').getElementsByTagName("tr");
        cols = document.getElementById('table3').getElementsByTagName("td");
   
        for(i=0;i<rows.length;i++){
        for(j=0;j<cols.length;j++){
          var link = cols[j].getElementsByTagName("a")
          if(link.length == 1){
if (cols[j].className == 'bo'){
           cols[j].onclick = new Function("document.location.href='" + link[0].href + "'");
         cols[j].onmouseover = new Function("this.className='highlight'");
          cols[j].onmouseout = new Function("this.className='bo'");
}
if (cols[j].className == 'bohalf'){
           cols[j].onclick = new Function("document.location.href='" + link[0].href + "'");
         cols[j].onmouseover = new Function("this.className='highlighth'");
          cols[j].onmouseout = new Function("this.className='bohalf'");
}
          }
        }
        }


      }

//    </script>  

