Email PHP inside a movie clip

Hey guys,
I am almost done with my site, I just have 1 more problem that I need to fix. I am trying to setup an email contact form. I followed a tutorial on gotoandlearn.com and made a form step by step, unfortunately the dynamic text and send button are inside a movie clip and I am not sure how I can get this to work. here is the script that is within the movie clip.
:book:


var senderLoad:LoadVars = new LoadVars();
var receiveLoad:LoadVars = new LoadVars();

_root.slider_mc.sender.onRelease = function() {
senderLoad.theName = theName.text;
senderLoad.theEmail = theEmail.text;
senderLoad.theMessage = theMessage.text;
senderLoad.sendAndLoad(“http://chriscerros.com/send.php”,receiveLoad);
}

receiveLoad.onLoad = function() {
if(this.sentOk) {
_root.contact_mc.gotoAndStop(“success”);
}
else {
_root.contact_mc.gotoAndStop(“failed”);
}
}


basically the whole email is in a movie clip. I am just not sure how to control it from the main timeline. it is in an MC called “contact_mc”. :wasted:
any help would be appreciated, thanks guys :thumb2:

If you need a better idea on what I am trying to do:

http://www.chriscerros.com/c_design_website/site.html

click on the “CONTACT” , it is a movie clip.