OR, submit the form to wherever you nromally do and in the RESPONSE from that form, include javascript to redirect the other 2 pages/frames. That way, you can customize the redirection based on the results of the form submission.
<HEAD>
<SCRIPT>
function myOnLoad(){
parent.[frame name 1].location=\'some customized local\';
parent.[frame name 2].location=\'some customized local\';
}
</SCRIPT>
</HEAD>
<BODY onLoad=\"myOnLoad\">
Alternatively, forgo the onload and run the javascript inline so while the main body is loading, it will redirect the other frames at the point it hits the script. Probably go ahead and stick this in the <HEAD> tags as well.
<SCRIPT>
parent.[frame name 1].location=\'some customized local\';
parent.[frame name 2].location=\'some customized local\';
</SCRIPT>
Hope this helps.
Best.
Matthew Pirvul
eAccounts.NETwork