function CambiarCuerpoTipografico(id,cantidad){
	this.id = id;
	this.inicial = 11;
	this.cantidad = 11;
	this.aumentar = cantidad;
	
	this.mas = function(){
//		alert("mas");
		this.element = document.getElementById(this.id);
		this.cantidad = this.cantidad>(this.inicial+2)?this.cantidad:(this.cantidad+this.aumentar);
		this.element.style.fontSize = this.cantidad+'px';
	}
	this.menos = function(){
//		alert("menos");
		this.element = document.getElementById(this.id);
		this.cantidad = this.cantidad<this.inicial?this.cantidad:(this.cantidad - this.aumentar);
		this.element.style.fontSize = this.cantidad+'px';
	}
}

var cT = new CambiarCuerpoTipografico('notaCuerpo',1);

