function PrintEmail(user, domain, display, props){
	document.write('<a href="mailto:' + user + '@' + domain + '" ' + props + '>');
	if (display != '' && display != null) {
		document.write(display);
	} else {
		document.write(user + '@' + domain);
	}
	document.write('</a>');
// useage: Place the following in script tages (the 'display' and 'props' parameters are optional):
//	PrintEmail('user','domain.tld','Display Name', 'additional attributes of the "a href" tag');
//	eg: PrintEmail('webservant','MennoniteMission.net','WebServant', 'class="Special_CSS_Class"');
//	OR: PrintEmail('webservant','MennoniteMission.net');
}
