function printPage() {
	
	window.print();

}

function increaseFontSize() {

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

}

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