<!--
// Font Resize

// var nowFontSz = 9;
var fontObj;

var expTime = new Date();
    expTime.setTime(expTime.getTime()+(24*60*60*1000*365));
var cName1 = "fontSz";
var cNameStr, cNameVal;

function getCookie() {
 cNameStr = arguments[0] + "=";
 if (document.cookie) {
   cStr_start = document.cookie.indexOf(cNameStr);
   if (cStr_start != -1) {
    cStr_start += cNameStr.length;
    cStr_end = document.cookie.indexOf(";", cStr_start);
    if (cStr_end == -1) cStr_end = document.cookie.length;
    cNameVal = document.cookie.substring(cStr_start, cStr_end);
   }
 }
 if (cNameVal) return cNameVal;
 else return null;
}

function fontSz() {
 if (document.getElementById) {
	 fontObj  = document.getElementById("article").style;
 }
 else if (document.all) {
	 fontObj  = document.all("article").style;
 }
 // Font Resize
 if (arguments[0] == 9) {
  fontObj.fontSize = 9 + "pt";
  nowFontSz = eval(9);
 }
 else if (arguments[0] == 18) {
  fontObj.fontSize = 18 + "pt"; 
  nowFontSz = eval(18);
 }
 else if (arguments[0] == 12) {
  fontObj.fontSize = 12 + "pt"; 
  nowFontSz = eval(12);
 }
 
 document.cookie = cName1 + "=" + nowFontSz + "; path=/" + "; expires=" + expTime.toGMTString();
}
//-->