﻿// JScript 檔

//****** 設定文章字型大小 ******
var FontSizeValue = CNA2007getCookie("ViewFontSize");
if(FontSizeValue == null) {
	//alert("尚未初始化閱覽大小");
	CNA2007setCookie("ViewFontSize","Mfont-txtCont");
	FontSizeValue = "Mfont-txtCont";
} else {
	//alert(FontSizeValue);
}

var imgsrc = imgName(FontSizeValue);
//alert(imgsrc);
initFontimg();
if (document.all && !document.getElementById) {
	document.all['textContent'].className = FontSizeValue;
	document.all[imgsrc].src = "/Postwrite/images/" + imgsrc + "_on.gif";
} else {
	document.getElementById('textContent').className = FontSizeValue;
	document.getElementById(imgsrc).src = "/Postwrite/images/" + imgsrc + "_on.gif";
}
//******************************
