<!-- 
/**** PER INGRANDIMENTO E RIDUZIONE FONT DELL'ELEMENTO SCELTO */

/* LIMITI */
var minimo=0.75;
var massimo=1.35;
var f = 1;
var h = 1.1;

/* FUNZIONE INCREMENTO */
function increaseFontSize() {

   var textarticol = document.getElementById("contenuto");
 
      if(textarticol.style.fontSize == "") {
	  	textarticol.style.fontSize = "1em";
		textarticol.style.lineHeight = "1.3em";
	  }
      if(f!=massimo) {
	     f += 0.05;
		 h += 0.05;
		 f=Math.round(f*100)/100
		 h=Math.round(h*100)/100
		 // alert('f:'+Math.round(f*100)/100+' '+'h:'+Math.round(h*100)/100);
      }
      textarticol.style.fontSize = f+"em"
	  textarticol.style.lineHeight = h+"em"
}

/* FUNZIONE DECREMENTO */
function decreaseFontSize() {

   var textarticol = document.getElementById("contenuto");
 
      if(textarticol.style.fontSize == "") {
	  	textarticol.style.fontSize = "1em";
		textarticol.style.lineHeight = "1.3em";
	  }
      if(f!=minimo) {
         f -= 0.05;
		 h -= 0.05;
 		 f=Math.round(f*100)/100
		 h=Math.round(h*100)/100
		  // alert('f:'+Math.round(f*100)/100+' '+'h:'+Math.round(h*100)/100);
      }
      textarticol.style.fontSize = f+"em"
	  textarticol.style.lineHeight = h+"em"
}
// -->
