frameset.htm:
<frameset cols="70%,*">
<frame name="frame1" src="frame1.htm"></frame>
<frame name="frame2" src="frame2.htm"></frame>
</frameset>
frame1.htm:
<input type="button" name="c1" value="button1" onclick="parent.frame2.document.all('c1').checked=true;">
<input type="button" name="c2" value="button2" onclick="parent.frame2.document.all('c2').checked=true;">
<input type="button" name="c3" value="button3" onclick="parent.frame2.document.all('c3').checked=true;">
<input type="button" name="c4" value="button4" onclick="parent.frame2.document.all('c4').checked=true;">
<input type="button" name="c5" value="button5" onclick="parent.frame2.document.all('c5').checked=true;">
<input type="button" name="c6" value="button6" onclick="parent.frame2.document.all('c6').checked=true;">
<input type="button" name="c7" value="button7" onclick="parent.frame2.document.all('c7').checked=true;">
<input type="button" name="c8" value="button8" onclick="parent.frame2.document.all('c8').checked=true;">
frame2.htm:
<input type="checkbox" name="c1">
<input type="checkbox" name="c2">
<input type="checkbox" name="c3">
<input type="checkbox" name="c4">
<input type="checkbox" name="c5">
<input type="checkbox" name="c6">
<input type="checkbox" name="c7">
<input type="checkbox" name="c8">