// Copyright (C) 2002, Core Communications. All rights reserved. Used by permission. http://www.corecomm.us/
function sendEmail(username, domain) {
	if(arguments.length > 2) subject='?subject='+arguments[2];
	else subject='';
	foo=window.open("mailto:"+username+"@"+domain+subject);
	if (foo != null && typeof foo == 'object') foo.close();
	}
