<!--//
///// THIS JS IS USED ON THE COURSE SEARCH RESULTS PAGE.
////  IT ADDS THE HIGHLIGHT COLOR ON MOUSEOVER OF TABLE CELLS.

 window.onload = function(){
 ConvertRowsToLinks("results");
  }
      
      function ConvertRowsToLinks(xTableId){

        var rows = document.getElementById(xTableId).getElementsByTagName("td");
   
        for(i=0;i<rows.length;i++){
          var link = rows[i].getElementsByTagName("a")
          if(link.length == 1){
            rows[i].onclick = new Function("document.location.href=\'" + link[0].href + "\'");
            
            rows[i].onmouseover = new Function("this.className=\'yellow\'"); 
            rows[i].onmouseout = new Function("this.className=\'\'"); 
          }
        }

      }

//-->

