Contact form, "thankyou message" problem

I use CS3 and AS2 to create a basic form with PHP which works fine on pressing the submit buttom, but when I add a …“gotoAndStop(3); at the end of the AS I move to frame 3 BUT no email data is sent to the PHP to email me.”…Can anyone help?

I’ve tried lots of different combinations…but to no joy

What I’m using is…

in the frame for the SUBMIT button…I have AS…

mSend.onRelease = function() { ;void //
// send variables in form movieclip (the textfields)
// to email PHP page which will send the mail
form.loadVariables(“email.php”, “POST”);
gotoAndStop(3); // - [COLOR=red]**when I put this in it stops send data to PHP
**[/COLOR]}

mSend is the instance of the MC that acts as a button

When I take OUT the “gotoAndStop(3);” it works fine and data is sent to PHP, BUT does NOT goto frame 3 - for the thankyou message

HELP…!!