// JavaScript Document
function antiSpam(name,domain) {
	if(domain == null) domain='spencerrecovery.com';
	window.location = 'mailto:'+name+'@'+domain;
}