/*
Änderung muss im about-Plugin nachgezogen werden

Basis kann auch von dieser Seite verwendet werden:
http://www.schechtel.de/email-protect/index.php?email=test%40test.org

*/
function noSpamMail(strMailPart1,strMailPart2,strTextLink)
	{
	var strHexMailTo = '&#x6d;&#97;&#x69;&#108;&#x74;&#111;&#x3a;';
	var strHexAt = '&#x40;';
	
	strMailPart1 = strMailPart1.replace(/\+/g,"&");
	strMailPart2 = strMailPart2.replace(/\+/g,"&");
	strTextLink = strTextLink.replace(/\+/g,"&");

	strMailPart1 = strMailPart1.replace(/\-/g,"#");
	strMailPart2 = strMailPart2.replace(/\-/g,"#");
	strTextLink = strTextLink.replace(/\-/g,"#");

	strMailPart1 = strMailPart1.replace(/h/g,"");
	strMailPart2 = strMailPart2.replace(/h/g,"");
	strTextLink = strTextLink.replace(/h/g,"");
	
	var strAncor = '<a href="' + strHexMailTo + strMailPart1 + strHexAt + strMailPart2 + '">';
		strAncor = strAncor + strTextLink;
		strAncor = strAncor + '</a>';
		
	document.write(strAncor);
	}