Ciao, ho realizzato una tabella dinamica, (il codice mel'hanno dato ad essere sincero ) ve lo posto:

<html>
<body bgcolor="yellow">
<script type="text/javascript" language="JavaScript">
<!--
var ns6=document.getElementById&&!document.all
var ie=document.all

function changeto(e,highlightcolor){
source=ie? event.srcElement : e.target
if (source.tagName=="TR"||source.tagName=="TABLE")
return
while(source.tagName!="TD"&&source.tagName!="HTML" )
source=ns6? source.parentNode : source.parentElement
if (source.style.backgroundColor!=highlightcolor&&sou rce.id!="ignore")
source.style.backgroundColor=highlightcolor
}

function contains_ns6(master, slave) {
while (slave.parentNode)
if ((slave = slave.parentNode) == master)
return true;
return false;
}

function changeback(e,originalcolor){
if (ie&&(event.fromElement.contains(event.toElement)| |source.contains(event.toElement)||source.id=="ign ore"))
return
else if (ns6&&(contains_ns6(source, e.relatedTarget)||source.id=="ignore"))
return
if (ie&&event.toElement!=source||ns6&&e.relatedTarget !=source)
source.style.backgroundColor=originalcolor
}

//-->
</script>

</head>
<body >



<div align="center">

<font size=2 face="verdana">
<table border=2 width=200 cellpadding=2 cellspacing=2 align="left" bgcolor="red" style="border-width:1px; border-color: #000000; border-style:solid;">
<tr>
<td>
<table onMouseover="changeto(event, 'white')" onMouseout="changeback(event, '#81caf5')" width="100%" cellspacing="4" cellpadding="4" border="0" align="center" bgcolor="orange">
<tr>
<td>
Cella 0 con effetto
</td>
</tr>

<tr>
<td>
cella 1 con effetto
</td>
</tr>

<tr>
<td>
cella 2 con effetto
</td>
</tr>

<tr>
<td>
cella 3 con effetto
</td>
</tr>

<tr>
<td>
<a>Cella 4 con effetto</a>
</td>
</tr>

<tr>
</tr>

</td>
</tr>
</table>
</font>
</body>
</html>

Però vorrei che le celle fossero arancioni, e che una volta che si passa il mause sopra una di esse diventa bianca. chi mi posta il codice corretto?? grazie mille....