<html>
<head>
<script language="Javascript">
function changecolor(var c)
{
document.body.style.background=c;
}
</script>
</head>
<body>
<table width="300" height="100" align="center" border=2>
<tr>
<td onmouseout=changecolor("transparent") onmouseover=changecolor("red")>red</td>
<td onmouseout=changecolor("transparent") onmouseover=changecolor("green")>green</td>
<td onmouseout=changecolor("transparent") onmouseover=changecolor("blue")>blue</td>
</tr>
</table>
</body>
</html>
I am not getting the change of color. Can someone please help...! Thanks in advance.