var fontSize = 11; function sendEmail(encodedEmail) { var email = ""; for (i=0; i < encodedEmail.length;) { var letter = ""; letter = encodedEmail.charAt(i) + encodedEmail.charAt(i+1) email += String.fromCharCode(parseInt(letter,16)); i += 2; } location.href = email; } function setFaceSize() { lineHeight = fontSize + Math.round(.3*fontSize); for (i = 0; i < 2; i++) { obj = document.getElementById("articleBody" + i); if (obj) { obj.style.fontSize = fontSize+"px"; obj.style.lineHeight = lineHeight+"px" } } } function eventFaceLarger() { fontSize = fontSize+2; if (fontSize > 18) {fontSize = 18;} setFaceSize() } function eventFaceSmaller() { fontSize = fontSize-2 if (fontSize < 9) fontSize = 9; setFaceSize(); }