ciao a tutti...
ho questa funzione per creare una popuop, che verrà richiamata al clik di un pulsante...
MovieClip.prototype.apriPopupCentrata = function (nome, titolo, lar, alt, feat)
{
var w = System.capabilities.screenResolutionX/2;
var h = System.capabilities.screenResolutionY/2;
var x = Math.round(w - (lar / 2));
var y = Math.round(h - (alt / 2));
getURL("javascript:window.open('"+ nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + "," + feat + "');void(0);");
};
fin qui tutto bene...
ma devo inviare anke delle variabili con il metodo "post" come faccio?
Grazie in anticipo.

Rispondi quotando