Need Small Help

Hi everyone again. I had some problem with my contacting form, but now it’s working just fine. Have another qustion. I don’t like that after you push button send in the form you can still see everything that you wrote before. Does any one know what i can put in my action script for buttone to clear all feelds or to go to another page with thank you message.
Here it is my script for the buttone:

on (release) {
if (!Email.length || Email.indexOf("@") == -1 || Email.indexOf(".") == -1) {
EmailStatus = “Please enter a valid E-mail address”;
}
else if (!FirstName.length) {
EmailStatus = “Please Enter your name before Sending”;
}
else if (!HomePhone.length) {
EmailStatus = “Please Enter your Home Phone before Sending”;
}
else if (!ToComments.length) {
EmailStatus = “Please enter some text in you message”;
}

else {
loadVariablesNum (“contact.php”, “0”, “Post”);
EmailStatus = “Sending… one Moment … or two… sometimes it’s faster then other times”;

}
}

Thank you