<!-- 
//Check_ctr is the controllling checkbox the group name shouldn't matter.
<!-- Begin
function Checkaboutme(chk)
{
if(document.aboutme.newsletter.checked==true){
for (i = 0; i < chk.length; i++)
chk[i].checked = true ;
}else{

for (i = 0; i < chk.length; i++)
chk[i].checked = false ;
}
}

// End -->