function i_hate_spam()
{
	a_tags=document.getElementsByTagName('a');
	
	for (i=0; i<a_tags.length; i++)
	{
		a_tags[i].href=a_tags[i].href.replace('[kukac_helye]', '@');
    	a_tags[i].href=a_tags[i].href.replace('[pont_helye]', '.');
	}
}

window.onload=i_hate_spam;
