function doMailTo(who)
{
	if (who == 'Beth Adams')
		document.write("<a href='mailto:Beth.Adams@bayercropscience.com'>Beth.Adams@bayercropscience.com</a>")
	else if (who == 'Carol Boland')
		document.write("<a href='mailto:Carolbo185@aol.com'>Carolbo185@aol.com</a>")
	else if (who == 'Christine Davis')
		document.write("<a href='mailto:cdavis@nc.rr.com'>cdavis@nc.rr.com</a>")
	else if (who == 'Sue Eckard')
		document.write("<a href='mailto:sueeckard@earthlink.net'>sueeckard@earthlink.net</a>")
	else if (who == 'Mary Eshelman')
		document.write("<a href='mailto:aka-shorti@mindspring.com'>aka-shorti@mindspring.com</a>")
	else if (who == 'Patricia Hartley')
		document.write("<a href='mailto:paddypooh@juno.com'>paddypooh@juno.com</a>")
	else if (who == 'Tom Jones')
		document.write("<a href='mailto:tmjmrj@aol.com'>tmjmrj@aol.com</a>")
	else if (who == 'Mary Levesque')
		document.write("<a href='mailto:mlevesque@nc.rr.com'>mlevesque@nc.rr.com</a>")
	else if (who == 'Steve Levesque')
		document.write("<a href='mailto:srlevesque@nc.rr.com'>srlevesque@nc.rr.com</a>")
	else if (who == 'Charles Lochmuller')
		document.write("<a href='mailto:c.lochmuller@verizon.net'>c.lochmuller@verizon.net</a>")
	else if (who == 'Mike Mazanek')
		document.write("<a href='mailto:mmaz@hotpop.com'>mmaz@hotpop.com</a>")
	else if (who == 'Tom Mrozek')
		document.write("<a href='mailto:tmrozek6644@netscape.net'>tmrozek6644@netscape.net</a>")
}

var colors = new Array(12);
colors[0] = "<font color='#333399'>"
colors[1] = "<font color='#FF3300'>"
colors[2] = "<font color='green'>"
colors[3] = "<font color='#FF9900'>"
colors[4] = "<font color='red'>"
colors[5] = "<font color='navy'>"
colors[6] = "<font color='orange'>"
colors[7] = "<font color='blue'>"
colors[8] = "<font color='fuchsia'>"
colors[9] = "<font color='teal'>"
colors[10] = "<font color='#FF3300'>"
colors[11] = "<font color='purple'>"

var music = new Array(3)
music[0] = "decolores.mid"
music[1] = "lasmanan.mid"
music[2] = "mananita.mid"
music[3] = "singsong.mid"

function colorWords(words, colorIndex, span, endSpan)
{
	var theDate = new Date();
	colorIndex = (theDate.getMilliseconds() + colorIndex) % 12;
	var len = words.length;
	var i = 0;
	document.write(span)
	while (i < len)
	{
		document.write(colors[(i + colorIndex) % 12] + words.charAt(i) + "</font\n>")
		i++
	}
	document.write(endSpan)
}

function playBackgroundSound()
{
	window.open('decolores.mid', '_blank', 'width=200, height=80');
}

function lastUpdate(lastUpdatedStr)
{
	document.write("<br>\n")
	document.write("<FONT FACE=\"Arial\" SIZE=-1>(Last Updated: " + lastUpdatedStr + ")</FONT>\n")
	document.write("<br>\n")
}

function footer()
{
	document.write("<p>&nbsp;</p>\n")
	document.write("<p>&nbsp;</p>\n")
	document.write("<p>&nbsp;</p>\n")
	document.write("\n")
	document.write("<center>\n")
	document.write("<font size='1' face='Arial'><i>This site is maintained by The Smu Group.<br>\n")
	document.write("Email any comments, questions, or suggestions ")
	document.write("<a href='mailto:smuGroup@nc.rr.com'>here</a>.</i></font>\n")
	document.write("</center>\n")
}