var fontSize = 13;
var lineHeight = 18;

function setFaceSize()
	{
	lineHeight = fontSize+Math.round(.3*fontSize);

		obj = document.getElementById("article");
		obj.style.fontSize = fontSize+"px";
		obj.style.lineHeight = lineHeight+"px"
	}

function FontLarger()
	{
	if (fontSize < 20) {
	fontSize = fontSize+2;
	setFaceSize();
	}
	}
	
function FontSmaler()
	{
	if (fontSize > 13) {
	fontSize = fontSize-2
	setFaceSize();
	}
	}


