
function email(address) {
	// Replace the text ' at ' (spaces are important)
	// with the '@' symbol
	address = address.split(" at ").join("@");
	// use the href="mailto command to open the email client
	window.location.href="mailto:"+address;
}
