function inicializar(){
	if (document.getElementById("LayerNota") != null) initNota();	// inicializo nota
}

var FONT_NORMAL=12;
var FONT_SMALLEST=7;
var FONT_LARGEST=20;
var fontSize = FONT_NORMAL;
var lineHeight = 16;

fontSize = 12;
lineHeight = fontSize+Math.round(.3*fontSize);

function seteoFuente(flag){
	lineHeight = fontSize+Math.round(.3*fontSize);
	objeto = document.getElementById("LayerNota");
	objeto.style.fontSize = fontSize+"px";
	objeto.style.lineHeight = lineHeight+"px"
	objeto.style.display = "block";
}

function eventoMasGrande(){
	fontSize = fontSize+1;
	if (fontSize > FONT_LARGEST) fontSize = FONT_LARGEST;
	seteoFuente(true)
}

function eventoMasPequenio(){
	fontSize = fontSize-1
	if (fontSize < FONT_SMALLEST) fontSize = FONT_SMALLEST;
	seteoFuente(true);
}

function initNota(){
	// Inicializa la nota
	if (document.getElementById("LayerNota") != null){
		seteoFuente(true);
	}
}

function eventoEstiloInicial(){
	fontSize = FONT_NORMAL;
	seteoFuente(true);
}