<html>
<head>
<script type="text/javascript">
function uncheckother(cur,seri){
c1=document.getElementById(seri+'1');
c2=document.getElementById(seri+'2');
c3=document.getElementById(seri+'3');
if (cur==1){
c1.checked=true;
c2.checked=false;
c3.checked=false;
}else if(cur==2){
c1.checked=false;
c2.checked=true;
c3.checked=false;
}else{
c1.checked=false;
c2.checked=false;
c3.checked=true;
}
}
</script>
</head>
<body>
<form>
<div>
<input type="checkbox" id="a1" onclick="uncheckother(1,'a')"/>
<input type="checkbox" id="a2" onclick="uncheckother(2,'a')"/>
<input type="checkbox" id="a3" onclick="uncheckother(3,'a')" />
</div>
<div>
<input type="checkbox" id="b1" onclick="uncheckother(1,'b')"/>
<input type="checkbox" id="b2" onclick="uncheckother(2,'b')"/>
<input type="checkbox" id="b3" onclick="uncheckother(3,'b')" />
</div>
<div>
<input type="checkbox" id="c1" onclick="uncheckother(1,'c')"/>
<input type="checkbox" id="c2" onclick="uncheckother(2,'c')"/>
<input type="checkbox" id="c3" onclick="uncheckother(3,'c')" />
</div>
<div>
<input type="checkbox" id="d1" onclick="uncheckother(1,'d')"/>
<input type="checkbox" id="d2" onclick="uncheckother(2,'d')"/>
<input type="checkbox" id="d3" onclick="uncheckother(3,'d')" />
</div>
<input type="checkbox" id="e1" onclick="uncheckother(1,'e')"/>
<input type="checkbox" id="e2" onclick="uncheckother(2,'e')"/>
<input type="checkbox" id="e3" onclick="uncheckother(3,'e')" />
</form>
</body>
</html>