function antispam(login, sufix, place, prefix) {
	var t = login + unescape("%4" + "0") + sufix;
	var s = '';
	if(place == 'top') {
		s = "<a href='mailto:" + t + "'><img src='" + prefix + "img/mail.gif' alt='Написать письмо'/></a>";
	} else if (place == 'bottom') {
		s = "<a style='font-weight: normal;' href='mailto:" + t + "'>" + t + "</a>";
	}
	document.write(s);											
}
																