function textModUpDown(idTexto,accion)
{
	if (accion == 'up')
	{
		document.getElementById(idTexto).style.fontSize = '16px';
	}
	if(accion == 'down')
	{
		document.getElementById(idTexto).style.fontSize = '12px';
	}
}