function tbl1(IDtab){
if (window.document.getElementById) {
r=document.getElementById(IDtab).tBodies[0].rows;
for(i=0;i<r.length;i++){
      c=r[i].cells;
      r[i].link=c[0].getElementsByTagName("a")[0].href;
      r[i].title= "Scheda dettaglio";
      r[i].style.cursor="pointer";
      r[i].onclick=function(){document.location.href=this.link};
      r[i].onmouseover = function(){this.className="sopra"};
      r[i].onmouseout = function(){this.className=""};
      }
}
}

