    var currentSize = 12;        function contentTextUp () {      var mainObj = document.getElementById ("content");      currentSize += 1;      mainObj.style.fontSize = currentSize + 'px';    }      function contentTextDown () {      var mainObj = document.getElementById ("content");      currentSize -= 1;      mainObj.style.fontSize = currentSize + 'px';    }            function scontentTextUp () {      var mainObj = document.getElementById ("scontent");      currentSize += 1;      mainObj.style.fontSize = currentSize + 'px';    }      function scontentTextDown () {      var mainObj = document.getElementById ("scontent");      currentSize -= 1;      mainObj.style.fontSize = currentSize + 'px';    }        function sscontentTextUp () {      var mainObj = document.getElementById ("sscontent");      currentSize += 1;      mainObj.style.fontSize = currentSize + 'px';    }      function sscontentTextDown () {      var mainObj = document.getElementById ("sscontent");      currentSize -= 1;      mainObj.style.fontSize = currentSize + 'px';    }