Réponse acceptée !
Salut,
un exemple :
<head>
<script type="text/javascript">
function site(lien)
{
window.location.href = lien;
}
</script>
<style type="text/css">
td{cursor:hand;}
</style>
</head>
<body>
<table border=1>
<tr>
<td onclick="site('http://www.google.fr');">Google</td>
<td onclick="site('http://www.voila.fr');">Voila</td>
</tr>
<tr>
<td onclick="site('http://www.javascriptfr.com');">Javascriptfr</td>
<td onclick="site('http://www.cppfrance.com');">CPPFrance</td>
</tr>
</table>
</body>
@++