Asp popup

I have Flash MX connecting to my database, working perfectly, inserting into the way it should…only problem is, the asp page also pops up, in a new window instead of just using the code to talk to the server and staying hidden. I really need it to stay hidden…any ideas as to what’s going on? here is my code that passes my variables from the root layer to the button, which is a couple movies deep.

on(press) {
var FirstName:String;
var LastName:String;
var EmplID:String;
var Assignment1a:String;
FirstName = _root.First;
LastName = _root.Last;
EmplID = _root.Empl;
Assignment1a = _root.Assignment1a;
getURL(“insert1a.asp”,0,“post”);
}
:ear: :ear: