
<!--

  // Change Font Size
var originalFontSize = 1;
var currentFontSize = 1;
function decreaseFontSize(sizeDifference) {
currentFontSize = currentFontSize - (sizeDifference);
fs = currentFontSize + "em";
var stObj = document.getElementById("myextended");
stObj.style.fontSize = fs;
}
function increaseFontSize(sizeDifference) {
currentFontSize = currentFontSize + (sizeDifference);
fs = currentFontSize + "em";
var stObj = document.getElementById("myextended");
stObj.style.fontSize = fs;
}
function resetFontSize() {
currentFontSize = originalFontSize;
fs = originalFontSize + "em";
var stObj = document.getElementById("myextended");
stObj.style.fontSize = fs;
}

//-->
  