/****	
		Erläuterung: creates a e-mail from parts of a email - Spam protection - Robots can't or do not validate javascript
		Verknüpfungen von: index.php
		Verknüpfungen zu: -
		Objekte: -
		Variablen: -
****/

function generateEmail(account, domain, dotwhat) {
	
	html = '<a href="mailto:'+account+'&#64;'+domain+'&#46;'+dotwhat+'">';
	html += account+'&#64;'+domain+'&#46;'+dotwhat;
	html += '</a>'
	
	document.write(html);
}
