var TxInicial = 0.08;
var textoHtml;

function zoom(Factor)
{
	tx = document.getElementById("contenido");
	TxInicial = TxInicial + Factor;
	tx.style.fontSize = TxInicial + "em";;
}
function CogerTexto()
{
	texto = document.getElementById("contenido");
	textoHtml = texto.innerHTML;
	zoom(0.9);
	
}

