Script work offline (In browser n .swf) but not online

Hi all,

I got this script


on (release) {
	var lv:LoadVars = new LoadVars();
	lv.onLoad = function(success:Boolean) {
		if (success) {
			//trace("lala"+lv.returnMessage);
			notificationMsg.htmlText = lv.returnMessage;
		} else {
			notificationMsg.htmlText = "failed";
		}
	};
	lv.load("http://www.st.com/backendScripts/microsites_checkMailingList.aspx?merchantCode=MONO&email="+monoemail.text+"&");
}

Somehow it will work offline, etc in broswer and .swf itself, but when i upload it to the server it doesn’t work.

I’m pretty sure the crossdomain policy is being taken care of, so any idea where is the problem?