hi rumbler,
I'm not completely sure about it, but if you want to submit all forms at once use this:
function submit_all() {
for (n=0; n<document.forms.length; n++)
document.forms[n].submit();
}
If you want to submit some particular forms (but not all of them), use this:
function submit_all() {
document.forms[1].sibmit();
document.forms[3].sibmit();
}
call this function from any button or link on your page:
<. . . onclick="submit_all()">
An off-topic issue:
don't use document.all structure as it's IE-only.
good luck