function mark( id, evento, colore ){
if ( evento ) document.getElementById(id).style.background = colore;
else document.getElementById(id).style.background = colore;
}

function mostra( id, evento ){
if ( evento ) document.getElementById(id).style.display = 'inline';
else document.getElementById(id).style.display = 'none';
}

