Work around with ASP variables in flash

Hello,

I have a flash movie which reads variables out of an ASP page. It works ok if i put the variables in a textfield. But when i try to work around with the variables in Flash it doesn’t work then. For example when i try to put a value which i have gotten from the ASP and try to put it into a variable which i made in flash i doesn’t work then. Does someone know what I’m doing wrong?

ASP PAGE RESULTS:


home=homeclub&away=awayclub

FLASH CODES:

 
this.pathToPics = "logos/";
loadVariablesNum("test.asp", 0, "GET");
this.logojpg = home+".jpg";
this.logojpg = away+".jpg";
loadMovie(this.pathToPics+this.homelogojpg, _root.homelogo);
loadMovie(this.pathToPics+this.awaylogojpg, _root.awaylogo);