var x = 100;

//拡大
function larger()  {
	x *= 1.2;
	document.getElementById('main').style.fontSize = x + '%';
}

//縮小
function smaller() {
	x /= 1.2;
	document.getElementById('main').style.fontSize = x + '%';
}

//元に戻す
function normal() {
	location.reload();
}