<script type="text/javascript" title="텍스트 크기 조절">
var now_menu = "-1";
var scale = 1;
function zoomIn() {
scale *= 1.2;
zoom();
}
function zoomOut() {
if((scale / 1.2) < 1){
alert("더이상 축소할수없습니다.");
return false;
}
scale /= 1.2;
zoom();
}
function zoom() {
document.body.style.zoom = scale;
}
</script>