// Simple Anti Spam Crawlwer Function
// Cillian Joy - cillian@deephousenetwork.com
// Could be made more secure by having and array of emails or domains that email can only be sent to

var MAIL_SERVER = "@dhnrecords.com";

function mail(name) {
if (name == "cillian") {
		NO_SPAM = "mailto:" + name + MAIL_SERVER + "?subject=DHN Query";
		document.location.href = NO_SPAM;	
	} else {
		NO_SPAM = "mailto:" + name + MAIL_SERVER;
		document.location.href = NO_SPAM;
	}
}