I need to zero in on a specific section of my jsp form during a hide to uncheck the checkboxes in that section.  Currently, anything I try either unchecks all checkboxes on the form or doesn't work at all.  When I associated the specific section with ID the first box within the div is unchecked but not the second. 
Suggestions?
[code=html]
<div id="menu1" class=hide>
<div id="col1">
<input type="checkbox" name="Topic" value="_topic1" />topic 1 </div>
<div id="col2">
<input type="checkbox" name="Topic" value="_topic2" />topic 2 </div>
<div id="exit"><img src="/img/exit.gif" onclick="unchec k('menu1')" /></div>
</div>
<div id="menu2" class=hide>
<div id="col1">
<input type="checkbox" name="Topic" value="_topic3" />topic 3 </div>
<div id="col2">
<input type="checkbox" name="Topic" value="_topic4" />topic 4 </div>
<div id="exit"><img src="/img/exit.gif" onclick="unchec k('menu2')" /></div>
</div>
<div id="col1"> // always visable.
<div><input type="checkbox" name="Topic" value="_main1" /> main 1</div>
<div><input type="checkbox" name="Topic" value="_main2" /> main 2 </div>
<div><input type="checkbox" name="Topic" value="_main3" /> main 3 </div>
</div>
[/code] -html
[code=javascript]
function uncheck()
{
document.getEle mentById("Topic ").checked=fals e
}
/// or ////
function uncheck2(formna me,checkname,st ate){
var checkboxes=eval ("document.form s."+formname+". "+checkname )
for (cb=0;cb<checkb oxes.length;cb+ +)
checkboxes[cb].checked=state
}
[/code] - javascript
					Suggestions?
[code=html]
<div id="menu1" class=hide>
<div id="col1">
<input type="checkbox" name="Topic" value="_topic1" />topic 1 </div>
<div id="col2">
<input type="checkbox" name="Topic" value="_topic2" />topic 2 </div>
<div id="exit"><img src="/img/exit.gif" onclick="unchec k('menu1')" /></div>
</div>
<div id="menu2" class=hide>
<div id="col1">
<input type="checkbox" name="Topic" value="_topic3" />topic 3 </div>
<div id="col2">
<input type="checkbox" name="Topic" value="_topic4" />topic 4 </div>
<div id="exit"><img src="/img/exit.gif" onclick="unchec k('menu2')" /></div>
</div>
<div id="col1"> // always visable.
<div><input type="checkbox" name="Topic" value="_main1" /> main 1</div>
<div><input type="checkbox" name="Topic" value="_main2" /> main 2 </div>
<div><input type="checkbox" name="Topic" value="_main3" /> main 3 </div>
</div>
[/code] -html
[code=javascript]
function uncheck()
{
document.getEle mentById("Topic ").checked=fals e
}
/// or ////
function uncheck2(formna me,checkname,st ate){
var checkboxes=eval ("document.form s."+formname+". "+checkname )
for (cb=0;cb<checkb oxes.length;cb+ +)
checkboxes[cb].checked=state
}
[/code] - javascript
Comment