<title></title>
<script type="text/javascript">
function highlight(c, r,sColor) {
//Highlight cells along the column.
for (var x=1; x<=r; x++) {
document.getElementById('C'+c+'R'+x).style.backgroundColor=sColor;
}
//Highlight cells along the row.
for (var x=1; x<=c; x++) {
document.getElementById('C'+x+'R'+r).style.backgroundColor=sColor;
}
}
</script>
</head>
<body>
<table border="1">
<tr>
<td width="100" id="C1R1" onmouseover="highlight(1,1,'yellow');" onmouseout="highlight(1,1,'white');"> </td>
<td width="100" id="C2R1" onmouseover="highlight(2,1,'yellow');" onmouseout="highlight(2,1,'white');"> </td>
<td width="100" id="C3R1" onmouseover="highlight(3,1,'yellow');" onmouseout="highlight(3,1,'white');"> </td>
<td width="100" id="C4R1" onmouseover="highlight(4,1,'yellow');" onmouseout="highlight(4,1,'white');"> </td>
</tr>
<tr>
<td width="100" id="C1R2" onmouseover="highlight(1,2,'yellow');" onmouseout="highlight(1,2,'white');"> </td>
<td width="100" id="C2R2" onmouseover="highlight(2,2,'yellow');" onmouseout="highlight(2,2,'white');"> </td>
<td width="100" id="C3R2" onmouseover="highlight(3,2,'yellow');" onmouseout="highlight(3,2,'white');"> </td>
<td width="100" id="C4R2" onmouseover="highlight(4,2,'yellow');" onmouseout="highlight(4,2,'white');"> </td>
</tr>
<tr>
<td width="100" id="C1R3" onmouseover="highlight(1,3,'yellow');" onmouseout="highlight(1,3,'white');"> </td>
<td width="100" id="C2R3" onmouseover="highlight(2,3,'yellow');" onmouseout="highlight(2,3,'white');"> </td>
<td width="100" id="C3R3" onmouseover="highlight(3,3,'yellow');" onmouseout="highlight(3,3,'white');"> </td>
<td width="100" id="C4R3" onmouseover="highlight(4,3,'yellow');" onmouseout="highlight(4,3,'white');"> </td>
</tr>
<tr>
<td width="100" id="C1R4" onmouseover="highlight(1,4,'yellow');" onmouseout="highlight(1,4,'white');"> </td>
<td width="100" id="C2R4" onmouseover="highlight(2,4,'yellow');" onmouseout="highlight(2,4,'white');"> </td>
<td width="100" id="C3R4" onmouseover="highlight(3,4,'yellow');" onmouseout="highlight(3,4,'white');"> </td>
<td width="100" id="C4R4" onmouseover="highlight(4,4,'yellow');" onmouseout="highlight(4,4,'white');"> </td>
</tr>
</table>
</body>
</html>