function overTR(tr,color){tr.style.cursor='hand';tr.bgColor=color;}
function outTR(tr,color){tr.style.cursor='default';tr.bgColor=color;}
function clickTR(tr){tr.children.tags('A')[0].click();}

function obre(desti,am,al,nom){
  var ampla = am;
  var altura = al;
  strURL = desti;
  poshoritz = (screen.width) ? (screen.width-ampla)/2 : 0;
  posvert = (screen.height) ? (screen.height-altura)/2 : 0;
  strW = 'toolbar=0,directories=0,location=0,status=no,menubar=0,resizable=false,copyhistory=yes,scrollbars=no,width='+ ampla + ',height='+ altura + ',top='+ posvert + ',left='+ poshoritz;
  eval("window.open('" + strURL + "',nom,'" + strW + "')");
}
