How to script a Contact Form success page?

Flash MX/1.0
I have an almost completely functional Contact Form on a website I am working on. The only issue is that I never get a “success” confirmation in my status box. The status box works great for letting me know when the email address was not entered correctly but I get nothing after hitting the “send” button (though I do get the emails in my inbox).

I would like to add to this code so it will send the user to a “confirmation/success” frame label after hitting the “send” button. Any ideas?

Here is the script on the “send” button:
on (release) {
status.text = “”;

if(formValidationChecks()){

//filling LoadVars object with variable values
my_lv = new LoadVars();
result_lv = new LoadVars();

my_lv.name = name.text;
my_lv.phone = phone.text;
my_lv.email = email.text;
my_lv.message = message.text;

trace( my_lv.name + " " + my_lv.phone + " " + my_lv.email + " " + my_lv.message);

my_lv.sendAndLoad(serverFile, result_lv, “POST”);

// When the results are received from the server…
result_lv.onLoad = function(success:Boolean) {
if (success) {
name.text = phone.text = email.text = message.text = “”;
status.text = result_lv [“serverResponse”];
}
};
}
}

Here is the validation script:
serverFile = “mail.php”;
function formValidationChecks(){
if ((!email.text.length) || (email.text.indexOf("@") == -1) || (email.text.indexOf(".") == -1)) {
status.text = “Please enter a valid E-mail address”;
return false;
} else if (!name.text.length) {
status.text = “Please enter Your Name”;
return false;
} else if (!message.text.length) {
status.text = “Please Enter Your Message”;
return false;
}
return true;
}