function sendEmail( em, d ) {
	em = em.replace( "[at]", "@" );
	if ( d ) em = em + "andreboas.com";
	window.location.href = "mailto:" + em;
}