Okay here is my actionscript
Code:
stop();
myVars = new LoadVars(); 
login.onRelease = function(){
	myVars.nname = nick;
	myVars.send( "http://localhost/test.php", "_blank" , "POST" );
}
All the test.php does is write what is sent to a .txt file.
When the vars are sent though it opens a new window - I know this is because of the "_blank".
But I don't want it to open a new window. What should I do??
Thanks.