Problems with contact page

My contact page (www.amberbutler.com) consists of a movie clip called “form” in which there are four input text boxes, “name_txt”, “ad_txt”, “email_txt”, and “comments_txt”.

In the frame that holds “form,” I have a submit button. You can test it yourself. Go to the contact page, fill out all the fields, and hit “submit.” It will submit. HOWEVER, if you first forget to fill out one field, it will warn you, but then it won’t submit after that. It’s like you have to “reset” the contact page in order to get it to submit.

My submit button code looks like this:

on (release) {
	error_txt.text = "";
	if ((form.name_txt.text != "") && (form.email_txt.text != "") && (form.comments_txt != "")) {
	    form.loadVariables("gdform.php", "POST");
	}
	else {
		error_txt.text = "Please fill out all fields marked with an asterisk (*).";
    }
}

error_txt is a dynamic text box below the form and above the buttons (in the frame with the buttons and “form”.

From what I can tell, if you have not filled out either name, email, or comments, then error_txt should display the message. But then, when you click on it again, error_txt should be reset to blank (which it is not), and it should run the “if” test again. But it’s like it gets stuck. Once you click the button it doesn’t work anymore or something.

Does anyone have any ideas? I’m a ::smidgen:: desperate, I have to have people able to contact me on this form. Hm, that would make a good smiley. Anyone got a ::smidgen desperate:: smiley? It would probably be a cross between :m: and :stare:.

Thanks!
:ear: sogj