codice:
<script language="JavaScript">
function colora(aaaa,cella){
  if (aaaa=='over'){
     document.getElementById(cella).bgColor='#ff6666';
     document.getElementById(cella).style.weight = 'bold';
  }
  if (aaaa=='out'){
     document.getElementById(cella).bgColor='#ffffff';
     document.getElementById(cella).style.weight = 'normal';
  }
}

</script>

Ciao