Problem with email form in mx 2004

Hello everyone,

So here’s what I’m trying to do. I have four input text boxes and a Send Button,with each box having a variable: name, telephone, email, and feedback (name, telephone, and email in one MC, feedback in another MC, and a Send Button in a third MC). Anyway, the user types in the information in each box, and then when you click on the Send Button, it opens up an email window that writes out everything like a paragraph. Here’s my actionscript attached to my Send Button…

on (release) {
getURL(“mailto:mailaddress@mailaddress.com?subject=Feedback” + “&body=” + "My name is " + name + ". My telephone number is " + telephone + ". My email address is: " + email+ ". I have the following comments for your site: " + message);
}

Well, here’s my issue. This works in Flash MX when I click on the Expression checkbox, however when I try it in MX 2004 it doesn’t work. The email window opens up with what’s in the quotation marks but it doesn’t take in the variables. I “think” it may have something to do with the expression checkbox and that I don’t have it checked in MX 2004 (because it doesn’t have one) but I’m not sure.

If anybody could help me out, it would be highly appreciated. Thanks.