//antispam.js
ispd = new Array("theneedlesbattery","nationaltrust")
ispe = new Array(".org.uk",".org.uk")

function sendmail(arraypos,name,text,subject,body){
	str='<a href="mailto:' + name + '@' + ispd[arraypos] + ispe[arraypos]
	if(subject != ""){
		str+='?subject=' + subject
		if(body!="")str+="&body=" + body
	}
	str+= '">'
	if(text==""){
		str+= name + '@' + ispd[arraypos] + ispe[arraypos]
	}else{
		str+= text
	}
	str+='</a>'
	document.write(str);
};