function fotogaleria(theURL) { //v2.0
  window.open(theURL,'','scrollbars=no,width=1004,height=525');
}
function printVersion(theURL) {
  window.open(theURL,'','scrollbars=yes,width=510,height=560');
}
function reload(theURL) {
	window.location.href = theURL;
}
var fuente = 12;
var minimo = 8;
var maximo = 20;
var fz_minimo = 1;
var fz_maximo = 2;
var fz = 1.25;

function aumentarTexto(texto){
	fuente = (fuente >= maximo) ? maximo : fuente + 1;
        fz = (fz >= fz_maximo) ? fz_maximo : fz + 0.25;
	var lay = document.getElementById(texto);
	lay.style.fontSize = fz+ "em";
	//lay.style.lineHeight = (fz + 0.25) + "em";
}
function achicarTexto(texto){
	fuente = (fuente <= minimo) ? minimo : fuente - 1;
        fz = (fz <= fz_minimo) ? fz_minimo : fz - 0.25;
	var lay = document.getElementById(texto);
	lay.style.fontSize = fz + "em";
	//lay.style.lineHeight = (fz + 0.25) + "em";
}

