function ContactLink(address,subject)  {
	//break up the the word randomly as a way of hopefully confusing spiders looking for it.
	var ret; // = '<A href="';
	ret = 'm';
	ret += 'ai';
	ret += 'l\u0074o\u003a';
	ret += address;
	//here is a random comment to separate this text
	ret += '@';
	//more
	//......random.....
	//.................comments
	ret += 'robertgpatterson.com';
	//subject may be omitted
	try {
		if ( subject ) {
			ret += '?subject='  +  encodeURI(subject);
		}
	}
	catch (e) {
		//do nothing
	}
	//ret += '">' + linkText + '</a>';
	return ret;
}

