﻿// TextSize
var CurrentTextSize = 3;
function increaseFontSize() 
{
    if (CurrentTextSize < 5)
    {
        CurrentTextSize ++;
        $('contenidoArticulo').className = "textSize" + CurrentTextSize;
    }
}
function decreaseFontSize() 
{
    if (CurrentTextSize > 1)
    {
            CurrentTextSize--;
            $('contenidoArticulo').className = "textSize" + CurrentTextSize;        
    }
}
