/* accesibilidad */
var tamanios_fuente = ["50%", "56%", "62.5%", "85%", "95%"];
var tamanio_ix = 2;

function ampliar_fuente()
{
	tamanio_ix = Math.min(tamanio_ix+1, tamanios_fuente.length-1);
	var arr = document.getElementsByTagName("body");
	var bdy = arr[0];
	bdy.style.fontSize = tamanios_fuente[tamanio_ix];
}

function reducir_fuente()
{
	tamanio_ix = Math.max(tamanio_ix-1, 0);
	var arr = document.getElementsByTagName("body");
	var bdy = arr[0];
	bdy.style.fontSize = tamanios_fuente[tamanio_ix];
}// JavaScript Document