function ampliarTexto(bloque){
	
	parrafos = document.getElementById(bloque).getElementsByTagName('p');
	for (i=0; i< parrafos.length; i++){
		
		if (parrafos[i].style.fontSize == '12px') { parrafos[i].style.fontSize = '13px'}
		else 									  { parrafos[i].style.fontSize = '15px'};
	} 
}

function reducirTexto(bloque){
	
	parrafos = document.getElementById(bloque).getElementsByTagName('p');
	for (i=0; i< parrafos.length; i++){
		if (parrafos[i].style.fontSize == '15px') { parrafos[i].style.fontSize = '13px'}
		else 									  { parrafos[i].style.fontSize = '11px'};
	} 
}
function imprimir(soloEsto){

contenido=document.getElementById(soloEsto).outterHTML;
ventana=window.open("about:blank","ventana","width=700,height=600,top=0;left:3000");
ventana.title="Imprimiendo..."
ventana.document.open();
ventana.document.write(contenido);
ventana.document.close();
ventana.print;
ventana.onprint=ventana.close();

}
