Input text in swf loaded into MC changes everything?

I have a form swf that works fine on it’s own. It sends variables to a cgi script that happily emails me.

But when I take this same script and loaded into into another SWF into a target MC, it stops working correctly.

I assuem all the variables need to be renamed. But I tried the correct level and path and still no luck.

Some of the code looks like this:

formData = new LoadVars();
formData.name = “”;
formData.name2 = “”;

The input text boxes variables are name, name2, address1, etc

then later

formData.sendAndLoad(“flash_mail.pl”, replyData, “post”);

I’ve tried
_level0.Host.stage.formData.sendAndLoad(“flash_mail.pl”, replyData, “post”);

Any ides?

Ron R