<!--
function noEspam(theName, theDomain, theLink) {
	if (theLink.length ==0){
		theLink = theName + '@' + theDomain;
	}
	document.write('<a href="mailto:' + theName + '@' + theDomain + '" title="' + theLink + '">' + theLink + '</a>');
}

function noEspam_contactForm(theName, theDomain, theID) {
	document.write('<a href="/contactForm.asp?contactID=' + theID + '" title="' + theName + '@' + theDomain + '">' + theName +'@' + theDomain + '</a>');
}

-->