Problem with flashmx and cfm

is there anybody can help me to point me to the rite path…really need help…i just wanna pass my variable to the cfm page…and then insert to the Access database…with variable name “NAME, ADDS, EMAIL” but it’s seem not working at all…is it this code totally wrong…

code in flash:
[AS]
//frame1
stop();

btn1.onPress = function(){
loadVariables(“insert.cfm”,"_root",“POST”);
}
btn1.onRelease = function(){
gotoAndPlay(2);

}
[/AS]

code in cfm page:


<cfset NAME = NAME>
<cfset EMAIL = EMAIL>
<cfquery name ="Getdtbase1" datasource="myDSN">

INSERT INTO Users(NAME,EMAIL,ADDS)
VALUES('#NAME#','#EMAIL#','#ADDS#')

</cfquery> 

pls help me…or is there any thread for it…or link to it…thx