function highlightItem(item,highlight){
var i=0;
if(highlight){
//coloro le celle della riga
for(i=0;i<9;i++)
document.getElementById(item+'_'+(i+1)).style.back groundColor="#AFDBFF";
//coloro i textbox della riga
document.getElementById('prezzo_attuale_min_'+item ).style.backgroundColor="#AFDBFF";
document.getElementById('prezzo_attuale_max_'+item ).style.backgroundColor="#AFDBFF";
document.getElementById('variazione_min_'+item).st yle.backgroundColor="#AFDBFF";
document.getElementById('variazione_max_'+item).st yle.backgroundColor="#AFDBFF";
}else if(!highlight){
//tolgo il colore dalle celle della riga
for(i=0;i<9;i++)
document.getElementById(item+'_'+(i+1)).style.back groundColor="#FFFFFF";
//tolgo il colore dai textbox della riga
document.getElementById('prezzo_attuale_min_'+item ).style.backgroundColor="#FFFFFF";
document.getElementById('prezzo_attuale_max_'+item ).style.backgroundColor="#FFFFFF";
document.getElementById('variazione_min_'+item).st yle.backgroundColor="#FFFFFF";
document.getElementById('variazione_max_'+item).st yle.backgroundColor="#FFFFFF";
}
}