
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FILE LOCATION: /2008_templates/scripts/display_textSizer.js
DESCRIPTION: This script writes the 'Text Size' buttons to the page
DATE of LAST EDIT: August 20, 2008 
CHANGE LOG: 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

document.write("<div id='sizer'>");
document.write("Text Size <a href='#' id='smaller' onclick='textSize(this); return false;' title='Click to decrease the font size'><img src='" + sSiteRoot + "2008_templates/images/textSizer/minus.gif' alt='Decrease text size' width='14' height='14'></a><a href='#' id='bigger' onclick='textSize(this); return false;' title='Click to increase the font size'><img src='" + sSiteRoot + "2008_templates/images/textSizer/plus.gif' alt='Increase text size' width='14' height='14'></a>");
document.write("</div>");

