      function ConvertRowsToLinks(xTableId){

        var rows = document.getElementById(xTableId).getElementsByTagName("tr");
   
        for(i=0;i<rows.length;i++){
          var link = rows[i].getElementsByTagName("a")
          if(link.length == 1){
	    rows[i].onclick = new Function("var newWin = window.open('" + link[0].href + "'); return false"); 
	    rows[i].onmouseover = new Function("this.className='over'; window.status='" + link[0].href + "';");
	    rows[i].onmouseout = new Function("this.className='" + rows[i].className + "'; window.status='';");
          }
        }

      }