currentSize = 10;

function GetFontObject() {

return document.getElementById("text");

}

function fontplus() {

if(currentSize < 100) currentSize++;

GetFontObject().style.fontSize = currentSize + "pt";
}

function fontminus() {

if(currentSize > 1) currentSize--;

GetFontObject().style.fontSize = currentSize + "pt";

}

