    function resizeText(multiplier) {
if (document.getElementById('content').style.fontSize == "") {
document.getElementById('content').style.fontSize = "1.0em";
}
document.getElementById('content').style.fontSize = parseFloat(document.getElementById('content').style.fontSize) + (multiplier * 0.2) + "em";
}



