// helps prevent spam bots from harvesting e-mail addresses
// <a href="javascript:email('name|a|domain|d|com')">e-mail us</a>
function email(str){
	str=str.replace('|a|','@');
	str=str.replace(/\|d\|/g,'.');
	location='mailto:'+str;
}
