<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
function visHvad() {
var a = arguments;
for (i=0; i<a.length; i+=2) {
if (a[i] != "none") {
x = document.getElementById(a[i]);
x.style.backgroundColor = a[i+1];
}
}
}
</script>
</head>
<body>
<table width="200" border="1">
<tr>
<td id="c1" onClick="visHvad('c1','red','c2','white','c3','white','c4','white')">a</td>
<td id="c2" onClick="visHvad('c1','white','c2','red','c3','white','c4','white')">b</td>
</tr>
<tr>
<td id="c3" onClick="visHvad('c1','white','c2','white','c3','red','c4','white')">c</td>
<td id="c4" onClick="visHvad('c1','white','c2','white','c3','white','c4','red')">d</td>
</tr>
</table>
</body>
</html>