// JavaScript Document

<!--
var newsfont = 14;
//var interlineado = newsfont + 8;

function changeFont(id) {

if (document.getElementById) {
	document.getElementById(id).style.fontSize = newsfont+"px";
	//document.getElementById(id).style.lineHeight = interlineado+"px";
	} else {
		if (document.layers) {
			document.layers[id].fontSize = newsfont+"px";
			//document.layers[id].lineHeight = interlineado+"px";
		} else {
			if (document.all) {
				eval("document.all." + id + ".style.fontSize = \"" + newsfont + "px \"");
				//eval("document.all." + id + ".style.lineHeight = \"" + interlineado + "px \"");
			}
		}
}

// esto arregla scroll al utilizar layers
// updateHeight();
//setCookie();
}
// aqui se produce el error
function larger() {
if (newsfont < 24 ) {
newsfont= newsfont +2;
//alert(newsfont);
changeFont('bajada_noticia3');
changeFont('bajada_noticia');
}
}

function smaller() {
if (newsfont > 14) {
newsfont= newsfont -2;
//alert(newsfont);
changeFont('bajada_noticia3');
changeFont('bajada_noticia');
}
}

//-->
