var max=18;
var min=8;

function increaseFontSize() {
	var texto = document.getElementById('textoNota');
	var s = 12;

	if (texto.style.fontSize){
		s = parseInt(texto.style.fontSize.replace("px",""));
	}

	if(s!=max) {
		s += 1;
	}

	texto.style.fontSize = s+"px";
}
function decreaseFontSize() {
	var texto = document.getElementById('textoNota');
	var s = 12;

	if (texto.style.fontSize){
		s = parseInt(texto.style.fontSize.replace("px",""));
	}

	if(s!=min) {
		s -= 1;
	}

	texto.style.fontSize = s+"px";
}
function agregarFavoritos(){
	if (window.sidebar && window.sidebar.addPanel)
		window.sidebar.addPanel("Diario Registrado","http://www.diarioregistrado.com","");
	else
		window.external.AddFavorite("http://www.diarioregistrado.com","Diario Registrado");
}
