[MX] loadvar opens new window, I don't want this

Hi, everything is working great about this script except that it is opening a new browser window when the submit button is pressed. Is this “open window” function in the following script or in the php file that it calls? If it is in the actionscript, how do I stop a new window from opening? Thank you.

_root.submit.onRelease = function() {
		formData = new LoadVars();
		formData.email = _root.form.mymail_add;
		formData.id = "JerseybandEmailList";
		formData.type = "text";
		formData.send("http://www.jerseyband.com/MyMail/add.php", formData, "POST");
		_root.gotoAndStop(2);
};