	function aspam(name, alias, domain, tld, show){
		document.write('<a href="mailto:');
		if(name != ''){
			document.write(name);
		}else{
			document.write(alias + '@' + domain + '.' + tld);		
		}
		document.write('<' + alias + '@' + domain + '.' + tld + '>">');
		if(show == true){
			document.write(alias + '@' + domain + '.' + tld);		
		}else{
			document.write(name);
		}
		document.write('</a>');		
	}

