 //questo script attiva la pop up sul link vuoi essere richiamato subito
function lanciapopup(){
var w = screen.width;
var h = screen.height;
var x = Math.round(w/2) - Math.round(460/2);
var y = Math.round(h/2) - Math.round(370/2);
finestra = window.open('form.asp', null, 'left=' + x + ', screenX =' + x + ',top=' + y + 'screenY=' + y +',width=460,height=370')
}
