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

