function drawEmailLink(user, domain, toplevel, customcaption) {
	if(customcaption.length > 0)
		document.write('<a href="mailto:' + user + "@" + domain + toplevel + '">' +customcaption + '</a>')
	else
		document.write('<a href="mailto:' + user + "@" + domain + toplevel + '">' + user + "@" + domain + toplevel + '</a>')	
}

function drawAtDefaultDomain(user) {
	drawEmailLink(user, "hickeylawyers", ".com.au", "");
}
