function zoom(foto) {
    w = 750;
	h = 500;
	attributi = "left=" + (screen.width-w)/2 + ",top=" + (screen.height-h)/2 + ",width=" + w + ",height=" + h + ",resizable=1,scrollbars=1,";
	nw = window.open (foto, "Zoom", attributi);
	nw.opener = self;
}

function mappa(cartina) {
    w = 650;
	h = 530;
	attributi = "left=" + (screen.width-w)/2 + ",top=" + (screen.height-h)/2 + ",width=" + w + ",height=" + h + ",resizable=0,scrollbars=0,";
	nw = window.open (cartina, "Mappa", attributi);
	nw.opener = self;
}
function gallery(cartina) {
    w = 750;
	h = 530;
	attributi = "left=" + (screen.width-w)/2 + ",top=" + (screen.height-h)/2 + ",width=" + w + ",height=" + h + ",resizable=yes,scrollbars=1,";
	nw = window.open (cartina, "Mappa", attributi);
	nw.opener = self;
}
function galleryZoom(cartina) {
    w = 540;
	h = 365;
	attributi = "left=" + (screen.width-w)/2 + ",top=" + (screen.height-h)/2 + ",width=" + w + ",height=" + h + ",resizable=yes,scrollbars=1,";
	nw = window.open (cartina, "Mappa", attributi);
	nw.opener = self;
}

