dunque io uso questo metodo per aprire la pop up:
codice:
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('" +[invio.id+nome]+ "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y + '," + feat + "');void(0);");
}
poi per aprirla uso :
codice:
centra('pagina.html', 'titolo', 490, 330);
dovrei convertirla in :
codice:
centra('pagina.asp?var='+_root.valore, 'titolo', 490, 330);
dico bene o sparo vaccate ?