loadVariables and multiple MC

Yo ppl. I did a flash form with some efect on it, and, the thing is that in order to do it i had to split the form in three separate MC. And my question is the code that i may follow.

First i did put this:

on (release) {
_level0.form.loadVariables(“email.php”, “POST”);
_level0.form2.loadVariables(“email.php”, “POST”);
_level0.form3.loadVariables(“email.php”, “POST”);
}

But then i realised that the code sent 3 e-mails and i changed to this:

on (release) {
_level0.form.loadVariables,_level0.form2.loadVariables,_level0.form3.loadVariables(“email.php”, “POST”);

}

Is that right??. I dont hav the server running right now so i cant test it. Is there a neater code to send three MC at the same time??