var min=16;
var max=24;
var f = 16;
var h = 24;
function increaseFontSize() {

   var textarticol = document.getElementById("articolo");

      if(textarticol.style.fontSize == "") {
	  	textarticol.style.fontSize = "16px";
		textarticol.style.lineHeight = "24px";
	  }
      if(f!=max) {
	     f += 1;
		 h += 1;
      }
      textarticol.style.fontSize = f+"px"
	  textarticol.style.lineHeight = h+"px"
}

function decreaseFontSize() {

   var textarticol = document.getElementById("articolo");

      if(textarticol.style.fontSize == "") {
	  	textarticol.style.fontSize = "16px";
		textarticol.style.lineHeight = "24px";
	  }
      if(f!=min) {
         f -= 1;
		 h -= 1;
      }
      textarticol.style.fontSize = f+"px"
	  textarticol.style.lineHeight = h+"px"
}

