<!--//

function popup( nome )
{

var w=550
var h=500
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'Zoom','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_immagine( nome )
{

var w=600
var h=550
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'Zoom','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_immagine_team( nome )
{

var w=800
var h=450
var x = (screen.width -w)/2
var y = (screen.height - h)/2
var finestra=window.open(nome,'Zoom','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_page( nome )
{

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


//-->