document.all.ct.style.fontSize = 14;

function changesize(flag){
	obj = document.all.ct.style.fontSize;
	num = eval(obj.substring(0,obj.length - 2) * 1);
	if(!isNaN(num)){
		if(flag == '+') {
			if(num > 18) alert('최대 폰트 사이즈 입니다');
			else document.all.ct.style.fontSize = eval(num + 1);
		} else {
			if(num > 12) document.all.ct.style.fontSize = eval(num - 1);
			else alert('이미 폰트의 최소 사이즈입니다.');
		}
	}
}
