﻿

function setFontSize(strSize) {
    document.body.style.fontSize = strSize;
    setCookie('fontSize', strSize, getDaysFromNow(30), '/');
}

function getFontSize() {
    strSize = getCookie('fontSize');
    if (strSize != null) { setFontSize(strSize); } else { setFontSize("100%"); }
}

getFontSize();
