<!--funzione per colorare le celle della tabella
function colora(chg){
var numerotr=document.getElementsByTagName("p id='test'").length;
for (d=0;d<numerotr;d++){
document.getElementsByTagName("p id='decolora'")[d].style.background='';
}
chg.style.background='#ffffcc';
} 
function decolora(chg){
var numerotr=document.getElementsByTagName("p id='test'").length;
for (d=0;d<numerotr;d++){
document.getElementsByTagName("p id='test'")[d].style.background='';
}
chg.style.background='';
} 
