// JavaScript Document

 window.onload = function(){
        ConvertRowsToLinks("table1");
      }
      
      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("document.location.href='" + link[0].href + "'");
            rows[1].onmouseover = new Function("this.className='highlight1'");
			rows[2].onmouseover = new Function("this.className='highlight2'");
			rows[3].onmouseover = new Function("this.className='highlight3'");
			rows[4].onmouseover = new Function("this.className='highlight4'");
			rows[5].onmouseover = new Function("this.className='highlight5'");
			rows[6].onmouseover = new Function("this.className='highlight6'");
			rows[7].onmouseover = new Function("this.className='highlight7'");
			rows[8].onmouseover = new Function("this.className='highlight8'");
			if ( i % 2 )
            	rows[i].onmouseout = new Function("this.className='movoutup'");
			else
				rows[i].onmouseout = new Function("this.className='movoutdw'");
          }
        }

      }
