Problem with contact form What am I doing wrong!

I had bought this flash template http://www.issdecor.com
I can get the contact form to work!!!
In the .fla what I did was name the MC to form and the variables are
“nam” “email” “company” and “messag” and the submit buttons in the form MC has this script

on (release) {
form.loadVariables(“form.php”, “POST”);
}

the php code page for form.php is this:
<?

$to = "sales@issdecor.com";
$msg = "$nam

";
$msg .= "$company

";
$msg .= "$email

";
$msg .= "$messag

";

mail($to, $subject, $msg, "From: My web site
Reply-To: $email
");

?>

what am I doing worng?