<!--//

function popup_immagine( 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_page( nome )
{

var w=440
var h=440
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_piantina( nome )
{

var w=980
var h=490
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_location( nome )
{

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


function popup_nilo( nome )
{

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