function zoom_texto(Accion)
{
	switch(Accion)
	{
		case 'tamaņo1':
			columna1.style.fontSize = '100%';
			columna2.style.fontSize = '100%';
		break;
		case 'tamaņo2':
			columna1.style.fontSize = '110%';
			columna2.style.fontSize = '110%';
		break;
		case 'tamaņo3':
			columna1.style.fontSize = '120%';
			columna2.style.fontSize = '120%';
		break;
		case 'tamaņo4':
			columna1.style.fontSize = '130%';
			columna2.style.fontSize = '130%';
		break;
	}
}