////////////////////////////////////
// getE().
// This is used to mung an email address on a web page.
// Input
//		myU:	username
//		myD:	domain name.
//		color:	the color of the text to be displayed.
// e.g. gsherman@aol.com...
//		myU = gsherman
//		myD = aol.com
//		color = whatever.
////////////////////////////////////
function getE(myU, myD, color)
{
	var e1 = "a href=";var e2 = "mai" + "lto";var e3 = "&#64;";
	document.write("<" + e1);document.write('"' + e2);document.write(':');document.write(myU + e3 + myD);
	document.write('"');document.write(">");
	document.write('<span style="color:#' + color + ';">');
	document.write(myU + e3 + myD);
	document.write('</span>');
	document.write("</a>");
}
