<!--
// Global Data //

var popWin;  // window object for remoteCloser() and remoteOpener()

// 	Global Functions //

function initImgs()
{
	if (document.images)
	{
		aaon = new Image(168, 37);
		aaon.src = "/images/menu_about_hi.gif";
		bbon = new Image(145, 37);
		bbon.src = "/images/menu_announce_hi.gif";
		ccon = new Image(107, 37);
		ccon.src = "/images/menu_contact_hi.gif";
		ddon = new Image(155, 37);
		ddon.src = "/images/menu_what_hi.gif";
		eeon = new Image(148, 37);
		eeon.src = "/images/menu_when_hi.gif";

		aaoff = new Image(168, 37);
		aaoff.src = "/images/menu_about_lo.gif";
		bboff = new Image(145, 37);
		bboff.src = "/images/menu_announce_lo.gif";
		ccoff = new Image(107, 37);
		ccoff.src = "/images/menu_contact_lo.gif";
		ddoff = new Image(155, 37);
		ddoff.src = "/images/menu_what_lo.gif";
		eeoff = new Image(148, 37);
		eeoff.src = "/images/menu_when_lo.gif";
	}
}// end initImgs()

function imageOver(imgName)
{
	if (document.images)
	{
		imgOn = eval(imgName + "on.src");
		document.images[imgName].src = imgOn;
	}
}// end ImageOver()

function imageOut(imgName)
{
	if (document.images)
	{
		imgOff = eval(imgName + "off.src");
		document.images[imgName].src = imgOff;
	}
}// end imageOut()

function remoteOpener(link, winName, features)
{
	popWin = window.open(link, winName, features);
	popWin.focus();
}// end remoteOpener()

function remoteCloser()
{
	if (popWin)
	{
		popWin.close();
	}
}// end remoteCloser()

// This is a global support function for the setInterval method used
// to animate a status message.
function blinkMessage()
{
	if (window.status == " ")
	{
		window.status = "Loading, Please Wait.";
		return true;
	}
	else
	{
		window.status = " ";
		return true;
	}
}// end blinkMessage()

function showCurrentYear()
{
	var now = new Date();
	var theYear = now.getYear()
  if (theYear < 2000)
  {
  	theYear += 1900;
  }
	document.write(theYear);
}

//-->
