// Script to allow users to resize the content area text in their browser.


	var intCurrentSize = 75;
	function SetTextSize(strElementID)
	{
	var divCurrent = document.getElementById(strElementID);
	if(divCurrent)
	{
	divCurrent.style.fontSize = intCurrentSize + '%';
	}
	}
	function DoTextResizes()
	{
	SetTextSize('content');
	}
	function IncreaseTextSize()
	{
	intCurrentSize += 10;
	DoTextResizes();
	}
	function DecreaseTextSize()
	{
	intCurrentSize -= 10;
	DoTextResizes();
}
