Problem with formmail

I am using the code below to send an e-mail form.
It sends the e-mail, but it also opens a new window that
says “Thank You For Filling Out This Form”.
How can I get rid of this message, and the new window.
I am using the Matt’s formmail.pl

You can view the site at http://www.egecelengil.com/Palisade

var address:String = “http://www.egecelengil.com/cgi-bin/formmail.pl”;
var url:URLRequest;
var variables:URLVariables = new URLVariables();
variables.subject = “Information Send From Palisade Academy Web Site”
variables.recipient = "[email protected]"

submit_btn.addEventListener(MouseEvent.CLICK, sendform);

function sendform(event:MouseEvent):void
{
variables.name = name_txt.text;
variables.email = email_txt.text;
variables.address = adress_txt.text;
variables.phone = phone_txt.text;

url = new URLRequest(address);
url.method = URLRequestMethod.GET;
url.data = variables;
navigateToURL(url);

}