Stranamente le celle non riescono ad acquisire la proprietà di link.
Vorrei poter anche fare in modo che al solo passaggio del mouse le celle cambino il colore dello sfondo.
Questo è il code:
<script language="javascript">
var old_attiva = null;
function attiva(id)
{
document.getElementById(id).style.backgroundColor= 'yellow';
if(old_attiva!=null)
{
document.getElementById(old_attiva).style.backgrou ndColor='#E7CBD2';
}

old_attiva = id;
}
</script>
</head>
<body>
<table>
<tr>
<td id="cella1" bgColor="#E7CBD2" style="HEIGHT: 10px; cursor: hand" align=middle onclick="attiva(this.id)" onMouseMove="this.style.backgroundColor='orange'"; onhref='homepage.htm'">
<a href="homepage.htm">

HOMEPAGE</p>
</a></font>
</td>
</tr>
<tr>
<td height="1" bgColor="#E7CBD2" align=middle id="cella2" style="cursor: hand" onclick="attiva(this.id); href='pippo.htm'">
pippo</td>
</tr>
<tr>
</table>