Flash Email Form Using PHP problem

I am having trouble with a checkbox component named ‘ch1’ within my flash form. Everything but that checkbox seems to be working just fine. Bascially the infomation gets to the PHP file then gets emailed to me. The problem is that when the email gets to me the ‘ch1’ or ‘join’ checkbox always has a yes in it that it was selected when it really has not been. Help would be greatly appreciated.

Code for button:
on (release) {
if (form.ch1.getvalue() == false) {
form.ch1 = “no”;
} else {
form.ch1 = “yes”;
}
form.loadVariables(“email.php”, “POST”);
}

Code for email.php:
<?php
//
$sendTo = “bwphoto@111.com”;
$subject = “Test Form”;
$name_field = $_POST[‘name’];
$email_field = $_POST[‘email’];
$headers = “From: " . $_POST[“firstName”] .” “. $_POST[“lastname”] . “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= “Return-path: " . $_POST[“email”];
$message = $_POST[“message”];
$join = $_POST[‘ch1’];
$body = " Name: $name_field
Email: $email_field
Join: $join
Message: $message”;
mail($sendTo, $subject, $body, $headers);
?>