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