Forum Moderators: open
Here's the Javascript function:
function checktheboxes(whichbutton){
if (whichbutton == "approval"){
this.update_code_form.reviewcopy.checked=true;
this.update_code_form.mail_reviewers.checked=true;
this.update_code_form.finalize.checked=false;
this.update_code_form.email.checked=true;
this.update_code_form.samplecopy.checked=false;
} else if (whichbutton == "publish"){
this.update_code_form.reviewcopy.checked=false;
this.update_code_form.mail_reviewers.checked=false;
this.update_code_form.finalize.checked=true;
this.update_code_form.email.checked=true;
this.update_code_form.samplecopy.checked=true;
} else if (whichbutton == "clear"){
this.update_code_form.reviewcopy.checked=false;
this.update_code_form.mail_reviewers.checked=false;
this.update_code_form.finalize.checked=false;
this.update_code_form.email.checked=false;
this.update_code_form.samplecopy.checked=false;
}
}
The form is named update_code_form.
--Jeff