_global.sendInfo = function(){
sendVars = new LoadVars();
sendVars.email = _root.email_txt;
ASPresponse = new LoadVars();
ASPresponse.onLoad = _global.receiveReply;
sendVars.sendAndLoad("[URL unfurl="true"]http://localhost/sendandload/processForm.asp",ASPresponse,"POST");[/URL]
}
_global.receiveReply = function(result){
//in your case the XML functions would go here
if(result){
_root.reply = ASPresponse.reply;
}else{
_root.reply = "Error";
}
}