var fontSize = 12;		// default größe für #inhalt

function FontSize(arg)
{
	obj = document.getElementById("inhalt");
	
	if (obj != null)
	{
		if (arg == 1)
		{
			if (fontSize < 17) fontSize += 1;
		}
		else if (arg == 0)
		{
			if (fontSize > 10) fontSize -= 1;
		}
		else
		{
    fontSize = arg;
    }
		obj.style.fontSize = fontSize + "px";
	}
}

