
function buildEmailLink(username, domain, subject, body){
	var email = username + '@' + domain;
	if (subject == null) subject = '';
	if (body == null) body = '';
	return '<a href="mailto:' + email + '?subject=' + encodeURIComponent(subject) + '&body=' + encodeURIComponent(body) + '">' + email + '</a>';
}


