function email_custom(to,text,subject){
if (text){
	text=text
}else{
	text=to+"@thresholdnh.com"
}
if(subject!=''){
	var email="<a href='";
	email += "mailto:";
	email += to;
	email += "@thresholdnh";
	email += ".com?SUBJECT=";
	email += subject;
	email += "'>";
	email += text;
	email +="</a>";
	
	document.write(email);

} else {


	var email="<a href='";
	email += "mailto:";
	email += to;
	email += "@thresholdnh";
	email += ".com'>";
	email += text;
	email +="</a>";
	
	document.write(email);
}

}