	/*	±ÛÀÚÈ®´ëÃà¼Ò */
	var currentFontSize = 3;
	function zoomUtil(state, e){
		var idx;
		var arrFontSize = new Array();

		arrFontSize[0] = "65%";
		arrFontSize[1] = "75%";
		arrFontSize[2] = "85%";
		arrFontSize[3] = "100%";
		arrFontSize[4] = "110%";
		arrFontSize[5] = "120%";
		arrFontSize[6] = "130%";


		var e = e || window.event;
		if (e) {
			if (state == "plus") {
				if (currentFontSize < 6 ) {
					idx = currentFontSize + 1;
					currentFontSize = idx;
				}else{
					idx = 6;
					currentFontSize = idx;
				}
			} else if (state == "default") {
				idx = 3;
				currentFontSize = idx;
			} else if (state == "minus") {
				if ( currentFontSize >= 1) {
					idx = currentFontSize - 1;
					currentFontSize = idx;
				}else{
					idx = 0;
					currentFontSize = idx;
				}
			}
		}
		document.body.style.fontSize = arrFontSize[idx];
		return false;
	}