<!--//
function popup_eventi( nome ){

var w=400
var h=400
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'eventi','width=' + w +',height=' + h + ', toolbar=no,directories=no,location=no,status=no,menubar=no,copyhistory=no,scrollbars=yes,resizable=no')
finestra.moveTo(x,y);
finestra.focus();
}

function popup_tg( nome ){

var w=320
var h=285
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'TG','width=' + w +',height=' + h + ', toolbar=no,directories=no,location=no,status=no,menubar=no,copyhistory=no,scrollbars=no,resizable=no')
finestra.moveTo(x,y);
finestra.focus();
}

function popup_iscrizione( nome ){

var w=740
var h=400
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'Iscrizione','width=' + w +',height=' + h + ', toolbar=no,directories=no,location=no,status=no,menubar=no,copyhistory=no,scrollbars=no,resizable=no')
finestra.moveTo(x,y);
finestra.focus();
}

function popup_cercapersone( nome ){

var w=918
var h=400
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'Iscrizione','width=' + w +',height=' + h + ', toolbar=no,directories=no,location=no,status=no,menubar=no,copyhistory=no,scrollbars=yes,resizable=no')
finestra.moveTo(x,y);
finestra.focus();
}

function popup_legal( nome ){

var w=550
var h=550
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'Legal','width=' + w +',height=' + h + ', toolbar=no,directories=no,location=no,status=no,menubar=no,copyhistory=no,scrollbars=yes,resizable=no')
finestra.moveTo(x,y);
finestra.focus();
}
//-->