Form info to send directly from website

I have just finished watching a Total Training Video on creating a eMail form in flash. At the end of the video it has my own e-mail open to send the info. I want the form to send the info directly from the website. Can someone please look at my code below and help me finish it to get the info to work directly from the website? Pretty please.

Thanks so much,
flyfisher2


on (click) {
// these statements simply read the data from the input fields
// and print them to the output window for debugging
trace(this._parent.username.text);
trace(this._parent.company.text);
trace(this._parent.email.text);
trace(this._parent.phone.text);
trace(this._parent.comments.text);
// save the return email address
returnEmail = this._parent.emal.text;
// create an empty string variable to store the data
urlData = "";
// assemble the data from the fields into the new variable
urlData += "Name:  "+this._parent.username.text+newline+" ";
urlData += "Company:  "+this._parent.company.text+newline+" ";
urlData += "Email:  "+this._parent.email.text+newline+" ";
urlData += "Phone: "+this._parent.phone.text+newline+" ";
urlData += "Questions: "+this._parent.comments.text+newline+" ";
// print url data to output window for debugging
trace(urlData);
// send email using user input data
getURL("mailto:markd@invisionequity.com?subject=InvisionInfo&body="+urlData);
}
submit_btn.onRelease = function (){
getURL ("mailto:markd@invisionequity.com");
}