AC Translation from Flash Player 5 to 8!

Hi,

im trying to translate this subscription form who works in player 5 but cant manage to make it work in player 8.

The problem is that my button isnt behaving like i want him to.
i want my button to 1st check my sections if they have text in it then send the info to my php file who sends back to me an email with all the forms content.
Right now this is working in player 5 but not in player 8 !

PS: i have attached the file to show u how this works.

thx alot in advance.

on (release) {

if (nom == "" || prenom == "" || adresse == "" || codepostal == "" || ville == "" || telephone == "" || email == "" || experience == "") {

	stop();

} else {

	loadVariablesNum("form.php", 0, "POST");

	gotoAndStop(2);

}

}