I am new to web development and ColdFusion. I have a form that works just
fine. I want to convert it to a flash form to get the flash look and
additional options. However, when I attempt this the flash form does not go
to the action page that I specify. Could someone look at the two sections of
code below and tell me if you see what I am doing wrong? If I have not
provided enough info to answer let me know and I will post more.


CODE FROM WORKING FORM

<cfoutput>
<cfform method="post"
action="../index.cfm?page=needabox/email_needabox&amp;pageid=#pageid#">
..
..
<more code>
..
..
<tr>
<td colspan="3"><div align="center">
<input name="Submit" type="submit" value=" Send Information ">
</div></td>
</tr>
</table>
</cfform>
</cfoutput>


CODE FROM FLASH FORM THAT DOES NOT GO TO ACTION PAGE SPECIFIED

<cfoutput>
<cfform
action="../index.cfm?page=needabox/email_needabox_TEST&amp;pageid=#pageid#"
format="flash"
height="1050"
width="500"
skin="haloBlue"
onSubmit="if(!Terms_and_Conditions.selected )
{ alert('You must agree to the Terms and Conditions to continue');
return false; }">
..
..
<more code>
..
..
<cfinput
name="Submit"
type="submit"
value=" Send Information " />
</p>
</cfform>
</cfoutput>