
<!--
function Centrata(immagine) {
var img = new Image();
img.src = immagine;
//var img = getImage(immagine);


var w = 400;
var h = 250;

var w = img.width+10;
var h = img.height+10;

var l = Math.floor((screen.width-w)/2);
var t = Math.floor((screen.height-h)/2);
window.open(immagine,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}
function centratawh(immagine,w,h) {

var l = Math.floor((screen.width-w)/2);
var t = Math.floor((screen.height-h)/2);
w=w+25;
h=h+25;
window.open(immagine,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}

var win = null;
function popupCentrata(pagina,nome,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(pagina,nome,settings)
}

//-->

