//*********************************************************
//This file contains data that appear on all pages and that
//must be updated either occaisionally or every time the
//site is updated.
//*********************************************************

//this is the date that appears at the bottom of all
//pages after the words "Page Last Updated:"

update = "July 30, 2004"

//these are the hyperlink mailto addresses for the webmaster

webmaster = '<a class="links" href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#69;&#110;&#103;&#105;&#78;&#101;&#114;&#100;&#48;&#49;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;"><font size="1" color="#FF6666">webmaster<\/font></a>'

function toggleMenu(currMenu) 
	{
	if (document.getElementById) 
		{
		thisMenu = document.getElementById(currMenu).style
		if (thisMenu.display == "block") 
			{
			thisMenu.display = "none"
			}
		else 
			{
			thisMenu.display = "block"
			}
		return false
		}
	else 
		{
		return true
		}
	}

