function sizeFont(sz)
	{
	document.body.style.fontSize = sz;
	/*
	switch(sz)
		{
		case "S":
			document.body.style.fontSize = 'small';
		break;
		case "M":
			document.body.style.fontSize = 'medium';
		break;
		case "L":
			document.body.style.fontSize = 'large';
		break;
		}
	*/
	}
