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 == "in") {
			if (currentFontSize < 6) {
				idx = currentFontSize + 1;
				currentFontSize = idx;
			} else {
				idx = 6;
				currentFontSize = idx;
			}
		} else if (state == "default") {
			idx = 1;
			currentFontSize = idx;
		} else if (state == "out") {
			if (currentFontSize >= 1) {
				idx = currentFontSize - 1;
				currentFontSize = idx;
			} else {
				idx = 0;
				currentFontSize = idx;
			}
		}
	}
	document.getElementById('wrap').style.zoom = arrFontSize[idx];
	document.body.style.zoom = arrFontSize[idx];
	return false;
}

