Dovrei far aprire un pop up e passare a questa nuova pagina una variabile (Lang = it), nel primo frame ho questo codice(per centrare il poup):
Movieclip.prototype.centra = function(nome,titolo,lar,alt,feat){
getURL("javascript:var x = Math.round((screen.width/2)-(" + lar + "/2));var y=((screen.height/2)-(" + alt + "/2));window.open('" + nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y + '," + feat + "');void(0);");
}
nel pulsante ho messo questo:
on (release) {
Lang = it;
loadVariablesNum("contact.jsp", it, "POST");
centra('contact.jsp','titolo',400,300,'status=yes' );
}
il popup si apre ma la variabile "it" non passa......