function email(who)

{

	document.write("<a href='mailto:"+who+"@lynnegraham.com'>");

	document.write(who);

	document.write("@");

	document.write("lynnegraham");

	document.write(".com");

	document.write("</a>");

}