function enlarge_font(C){var B="";var A="";if(document.defaultView&&document.defaultView.getComputedStyle){B=document.defaultView.getComputedStyle(document.body,"").getPropertyValue("font-size")}else{if(document.body.currentStyle){B=document.body.currentStyle.fontSize}}if(B.length>0){if(B.indexOf("px")>-1){B=B.substr(0,B.length-2);B=""+parseInt(B,10)/0.16}else{if(B.indexOf("%")>-1){B=B.substr(0,B.length-1)}}switch(B){case"62.5":A="75%";C.className="font smaller";break;default:A="62.5%";C.className="font larger"}setCookie("fontsize",A+";"+C.id+";"+C.className,30);document.body.style.fontSize=A}}function readFontSizeSetting(){var B=getCookie("fontsize");if(B!=null){var C=B.split(";");if(C.length==3){document.body.style.fontSize=C[0];var A=document.getElementById(C[1]);if(A!=null){A.className=C[2]}}}}function window_onload(){readFontSizeSetting()}window.onload=window_onload