//------------------------------------------------------------------
//		È­¸é±Û²Ã È®´ë
//------------------------------------------------------------------

var def_fontsize = 0.78;	//±âº»¹ÙµðÆùÆ®»çÀÌÁî
var cur_fontsize = 0.78;

function fzoomPlus() { 

	var obj = document.body; 
        
	if (cur_fontsize == 0.78) { 
	    obj.style.fontSize = (def_fontsize+0.1)+"em"; 
	} else { 
	    obj.style.fontSize = (cur_fontsize+0.1)+"em"; 
	} 
	 
	cur_fontsize = cur_fontsize+0.1; 
} 
 
function fzoomDefault() { 
	var obj = document.body; 
	obj.style.fontSize = def_fontsize+"em"; 
	cur_fontsize = 0.78; 
} 
 
function fzoomMinus() { 
	var obj = document.body; 	 
	 
	if (cur_fontsize == 0.78) { 
	    obj.style.fontSize = (def_fontsize - 0.1)+"em"; 
	} else { 
	    obj.style.fontSize = (cur_fontsize - 0.1)+"em"; 
	} 
	cur_fontsize = cur_fontsize-0.1; 
} 
