function gallery(tipo){
	
	jQuery(function() {
		centerPopup();
		loadPopup();
	});
	
	var getUrl = "/public/caricamento_gallery.php?tipo="+tipo;
  jQuery.get(getUrl, function(resp) {
	   jQuery("#section_gallery").html(resp)
	   jQuery("#title_gallery").html("<h1>Galleria Fotografica - "+tipo+"</h1>")
  }) 
}

 function PopupCentrata() {
   var w = 845;
   var h = 480;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open("/gallery/photo0910.html","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l + ",scrollbars=yes");
 }
	
function centra(url, width, height) {
   if (document.all) {
      var x = window.screenLeft;
      var y = window.screenTop;
      var w = window.document.body.offsetWidth;
      var h = window.document.body.offsetHeight;
   } else {
			var x = window.screenX;
			var y = window.screenY;
			var w = window.outerWidth;
			var h = window.outerHeight;
   }
  var cntx = x + Math.round((w - width) / 2);
  var cnty = y + Math.round((h - height) / 2);
  window.open (url, null, 'left=' + cntx + ',top=' + cnty + ',width=' + width + ',height=' + height);
}


