// Javascript Scripts for the Amherst Land Trust
//  - by Richard Hart 
// First a function to hide email address from spiders.

function newAddr (type, domain, name) {
	mailTag="mailto";
	topDot = "&#046;";
	topAt = "&#064;";
	document.write("<a class='alt' href='" + mailTag + ":" + name);
	document.write(topAt + domain + topDot + type + "'>");
	document.write(name);
	document.write(topAt + domain + topDot + type + "</a>");
	}

// for BOT members.

function botAddr (type, domain, acct, name) {
	mailTag="mailto";
	subj="?subject='Amherst Land Trust Question for " + name;
	topDot = "&#046;";
	topAt = "&#064;";
	document.write("<a class='alt' href=\"" + mailTag + ":" + acct);
	document.write(topAt + domain + topDot + type + subj + "\">");
	document.write(name);
	document.write("</a>");
	}
