function email(element, domain, id) {
	element.href="mailto: "+id+"@"+domain;
}

function emailWithInfo(element, domain, id, subject, body) {
	element.href="mailto: "+id+"@"+domain+"?subject="+subject+"&body="+body;
}
