function emailLink (a, b) { 
	// hide email addresses from bad bots
	// this function was originally found in 2idi.com/2idi.js
	document.location = "mailto:"+a+"@"+b;
}

