loadMovie Problems!

Hi,

I’m new to flash and have just started using it with the release of my new site, www.envisagecreations.com. If you look at the contact page, you will see that when you press submit, it doesn’t do anything, however when you go to [url=“http://www.envisagecreations.com/contact.swf”]www.envisagecreations.com/contact.swf it does.

What my site does, is with each link it opens another SWF in the content area, I think this is the problem because my submit button’s code is:

on (release) {
form.loadVariables(".//mail.php", “POST”);
_root.nextFrame();
}

Maybe it’s trying to go to the next frame in the SWF it has been loaded into? Does anyone have any ideas on how I can fix this problem?

EDITED:

Ok, I managed to fix half the problem. By changing the code to:

on (release) {
form.loadVariables(".//mail.php", “POST”);
_root.content.nextFrame();
}

It worked, because _root.content is the container in the main movie. However the bigger problem is, that the content doesn’t get emailed to me! Any advice?
Regards,

Luke