Flash based email... help!

im doing the flash based email project for my bands site, you can see the tutorial here. Im having a problem when i click the send button, but it doesnt go to the next frome, its almost like the data isnt being sent. this is what the .php page has

 <style type="text/css">
<!--
body {
background-color: #000066;
}
-->
</style>
<title>Dinkum : Contact : Naaman</title><div align="center"></div>
<?php
$sendTo = "[email="Naaman@atomicmatches.com"]Naaman@atomicmatches.com[/email]";
$subject = "Contact from website";
$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">
";
$headers .= "Reply-To: " . $_POST["email"]; 
$message = $_POST["message"];
mail($sendTo, $subject, $message, $headers);
?>
<div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="[http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0](http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0)" width="500" height="500">
	<param name="movie" value="contactnaaman.swf">
	<param name="quality" value="high">
	<embed src="contactnaaman.swf" quality="high" pluginspage="[http://www.macromedia.com/go/getflashplayer](http://www.macromedia.com/go/getflashplayer)" type="application/x-shockwave-flash" width="500" height="500"></embed>
</object>
</div>

i am also including the .fla to see if there is any problem there

please help! i want to get this site done by friday.
help would be much appreciated