

function fnSetFont(pmFont) {
	$('body').removeClassName('font_plus');
	$('body').removeClassName('font_standard');
	$('body').removeClassName('font_minus');
	
	$('body').addClassName(pmFont);
	
	document.cookie = "FontSize=" + pmFont + ";path=/";
}
