//********************************************************************
//	變更字型大小
//********************************************************************
function setFontSize(newFontSize)
{
	var i, a;
	switch (newFontSize)
	{
		case "FontL":
			for (i = 0; (a = document.getElementsByTagName("*")[i]); i++)
			{
				if (a.getAttribute("cat")!="topLink" && a.getAttribute("cat")!="search" && a.tagName!="input")
				{
					//a.setAttribute("style", "font-size:16px");
					a.style.fontSize=16 + 'px';
				}
			}
			break;
		
		case "FontM":
			for (i = 0; (a = document.getElementsByTagName("*")[i]); i++)
			{
				if (a.getAttribute("cat")!="topLink" && a.getAttribute("cat")!="search" && a.tagName!="input")
				{
					//a.setAttribute("style", "font-size:14px");
					a.style.fontSize=14 + 'px';
				}
			}
			break;
			
		case "FontS":
			for (i = 0; (a = document.getElementsByTagName("*")[i]); i++)
			{
				if (a.getAttribute("cat")!="topLink" && a.getAttribute("cat")!="search" && a.tagName!="input")
				{
					//a.setAttribute("style", "font-size:12px");
					a.style.fontSize=12 + 'px';
				} 
			}
			break;
	}
	//document.body.setAttribute("style", "font-size:125%");
}
