var tpl_setFontSize = function(value){
    var body = document.getElementsByTagName("body")[0];
    switch(value) {
        case 'inc':
            if(tpl_fontSize == 6) return;
            tpl_fontSize++;
        break;
        case 'norm':
            if(tpl_fontSize == tpl_defaultFontSize) return;
            tpl_fontSize = tpl_defaultFontSize;
        break;
        case 'dec':
            if(tpl_fontSize == 1) return;
            tpl_fontSize--;
        break;
        default:
            value = parseInt(value);
            if(value < 1 || value > 6) return;
            tpl_fontsize = value;
            
    }
    body.className = 'fs' + tpl_fontSize;
    document.cookie = tpl_cookieName + '=' + tpl_fontSize;
}
