<!--//

function popup_referenza( nome )
{

var w=640
var h=520
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_immobile( nome )
{

var w=640
var h=520
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_google_maps( nome )
{

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

//-->