// JavaScript Document


function textPlus() {
	var fs = document.getElementById('contentmid');
	var size = parseInt(fs.style.fontSize);
	fs.style.fontSize = (size+2) + 'px';
}

function textMinus() {
	var fs = document.getElementById('contentmid');
	var size = parseInt(fs.style.fontSize);
	fs.style.fontSize = (size-2) + 'px';
}


