function rollOverOn(nom_imatge) {
  //alert('on');
if (document[nom_imatge])
document.images[nom_imatge].src = eval(nom_imatge+"_on").src;
}

function rollOverOff(nom_imatge) {
    //alert('off');
    //alert(nom_imatge);
if (document[nom_imatge])
document.images[nom_imatge].src = eval(nom_imatge).src;
}
