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

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

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

var w=550
var h=500
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_legal( nome ){

var w=600
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();
}

function popup_page( nome ){

var w=550
var h=300
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();
}


function popup_filemanager( nome ){

var w=800
var h=580
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'FileManager','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();
}
//-->
