una cosa del genere

[code]
prova ad usare il loadVars al posto del loadVariables verifichi che la var sia stata caricata e solo dopo fai il getURL

codice:
on(release) {
Dati = new LoadVars() 
Dati.onLoad = function(){ 
_root.Lan.text = this.Lan;
trace(_root.Lan)
getURL('../lsogg.asp?Ln='+_root.Lan,'_self');
} 
Dati.load('pagina.asp') 

}