	// ***********************************************************************************************
	// ***********************************************************************************************
	// *****
	// *****	GLOBAL JAVASCRIPT created October 23, 2008 by MRG
	// *****
	// ***********************************************************************************************
	// ***********************************************************************************************
	
	var currentFontSize = 1;
	var maxFontSize = 4;

	// ***********************************************************************************************
	// ***********************************************************************************************
	
	 function changeFontSize(arg1)
	{
		if(arg1==1) 	// bump it up!
		{
			currentFontSize++;
			if(currentFontSize > maxFontSize)
				currentFontSize = maxFontSize;
		}
		else			// bring 'er down
		{
			currentFontSize--;			
			if(currentFontSize < 1)
				currentFontSize = 1;			
		}
		
		switch (currentFontSize)
		{
			case 1: 
				document.getElementsByTagName('body').item(0).style.fontSize='82%';
				break;
			case 2: 
				document.getElementsByTagName('body').item(0).style.fontSize='94%';
				break;
			case 3: 
				document.getElementsByTagName('body').item(0).style.fontSize='120%';
				break;
			case 4: 
				document.getElementsByTagName('body').item(0).style.fontSize='140%';
				break;
			default: 
				document.getElementsByTagName('body').item(0).style.fontSize='82%';
				break;
		}
	}
	
	// ***********************************************************************************************
	// ***********************************************************************************************
	
	 function printView()
	{
		window.print();	
	}
	
	// ***********************************************************************************************
	// ***********************************************************************************************
	
	 function clickEmail()
	{
		alert('Not Implemented Yet, Dude!');		
	}

	// ***********************************************************************************************
	// ***********************************************************************************************
	// added Jan 16, 2009
	
	 function resizeDiv(divID, divHeight)
	{
		document.getElementById(divID).style.height = divHeight + 'px';
	}
