io risolvo così:

in un frame qualsiasi scrivi:

Movieclip.prototype.popup = function (nome,titolo,lar,alt,x,y,feat){
getURL("java script:window.open('" + nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + "," + feat + "');void(0);");
}

al pulsante che che apre ed invia i dati alla pagina .asp, scrivi questo script:

on (release) {
popup('anteprima.asp?var='+_root.valore, 'titolo', 400, 400, 100, 100, 'status=yes');
}
nella pagina .asp che io ho chiamato per comodità anteprima.asp recuperi il valore con il solito Request.QueryString("var")


tiger