// TRANSLATORS: Translate only this single line, commenting out the
// English version.

var fteam = "the FirstGlance Development Team";

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// NO TRANSLATION IS NEEDED BELOW THIS LINE.
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

function contact_address(subj, punct)
{
	document.writeln(make_contact_address(subj, punct));
}

function make_contact_address(subj, punct)
{
	var conad = "<a href='mailto:emartz@microbio.umass.edu?subject=" +
		subj + "'>" + fteam + "</a>" + punct;

	return conad;	
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

