// google analytics
var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-1656781-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
  
// chiusura popup
function chiudi(id){
    window.document.getElementById(id).style.display="none";
}

//funzione per l'apertura dei pop-up
	function popup(pagina,op1,op2,width,height,center)
	{
	  larghezza=screen.width;
	  altezza=screen.height;
	  if(center=1){
	  spazio_oriz=(larghezza-width)/2;
	  spazio_vert=(altezza-height)/2;
	  }else{
	  spazio_oriz=5;
	  spazio_vert=5;
	  };
	  parametri = "resizable="+op1+",scrollbars="+op2+",width="+width+",height="+height+",left="+spazio_oriz+",top="+spazio_vert;
	  window.open(pagina,"popup",parametri);
	}
