function increaseFontSize(scaleFactor) {

	document.getElementById('textArea').style.fontSize="16px";

}

function decreaseFontSize(scaleFactor) {
	
	document.getElementById('textArea').style.fontSize="12px";
	
}

function printPage() {
	
	window.print();
	

}