
schedule("window", initSpamProtection);




function initSpamProtection()
{
	var anchors = document.getElementsByTagName("a");

	for (var i = 0; i < anchors.length; i++)
	{
		if (anchors[i].href.match(/ \[at\] /))
		{
			anchors[i].onmouseover = unspamEmailAnchor;
			anchors[i].onfocus = unspamEmailAnchor;
		}
	}
	return true;
};




function unspamEmailAnchor()
{
	this.href = this.href.replace(/ \[at\] /, "@");

	return true;
};
