function fontSizeChange(flag) {
	if(flag =='12'){
		document.body.style.fontSize = '12px';
	}else if(flag =='14'){
		document.body.style.fontSize = '14px';
	}
}

