var min=8;
var max=20;
function increaseFontSize(id) {
   var corpo = document.getElementById(id);
  if(corpo.style.fontSize) {
	 var s = parseInt(corpo.style.fontSize.replace("px",""));
  } else {
	 var s = 13;
  }
  if(s!=max) {
	 s += 1;
  }
  corpo.style.fontSize = s+"px"
//  corpo.style.lineHeight = 150+"%"
}
function decreaseFontSize(id) {
  var corpo = document.getElementById(id);
  if(corpo.style.fontSize) {
	 var s = parseInt(corpo.style.fontSize.replace("px",""));
  } else {
	 var s = 13;
  }
  if(s!=min) {
	 s -= 1;
  }
  corpo.style.fontSize = s+"px"
//  corpo.style.lineHeight = 150+"%"
}
function defaultFontSize(id) {
	var corpo = document.getElementById(id);
	corpo.style.fontSize = "13px"
//	corpo.style.lineHeight = 150+"%"
}
