è sbagliato qui:
<script language=\"JavaScript\">
<!--
function setColor(destinazione) {
var choice;
choice = document.colorForm.color.selectedIndex;
switch(choice) {
case 0: document.getElementById(destinazione).bgColor = "#FFFFFF"; break;
case 1: document.getElementById(destinazione).bgColor = "#FF0000"; break;
case 2: document.getElementById(destinazione).bgColor = "#0000FF"; break;
default: alert("errore"); break;
}
}
//-->
</script>