<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<SCRIPT LANGUAGE="JavaScript">
<!--
function ock_check(inttype){
switch (inttype)
{
case 1:
if (document.all.frm1.groupOne.length>0)
{
for (var  i = 0;i <  document.all.frm1.groupOne.length ; i++)
{
document.all.frm1.all("groupOne")[i].checked=true;
}
}
if (document.all.frm1.groupTwo.length>0)
{
for (var  i = 0;i <  document.all.frm1.groupOne.length ; i++)
{
document.all.frm1.all("groupTwo")[i].checked=false;
}
}
break;
case 2:
if (document.all.frm1.groupTwo.length>0)
{
for (var  i = 0;i <  document.all.frm1.groupOne.length ; i++)
{
document.all.frm1.all("groupTwo")[i].checked=true;
}
}
if (document.all.frm1.groupOne.length>0)
{
for (var  i = 0;i <  document.all.frm1.groupOne.length ; i++)
{
document.all.frm1.all("groupOne")[i].checked=false;
}
}
break;
}
}
//-->
</SCRIPT>
</HEAD><BODY>
<FORM METHOD=POST ACTION="" name = "frm1">
一组<INPUT TYPE="radio" NAME="groupNo" onclick="ock_check(1)">&nbsp;二组<INPUT TYPE="radio" NAME="groupNo" onclick="ock_check(2)"><BR>
1-1<INPUT TYPE="checkbox" NAME="groupOne">&nbsp;1-2<INPUT TYPE="checkbox" NAME="groupOne"><BR>
2-1<INPUT TYPE="checkbox" NAME="groupTwo">&nbsp;1-2<INPUT TYPE="checkbox" NAME="groupTwo"><BR>
</FORM>
</BODY>
</HTML>