// JavaScript Document
	function showmail($encoded) {
		var reg = new RegExp('(.*?)(<?php
echo addslashes(preg_quote($arSeparators[$atInd])); ?>)(.*)','g');
		var mail = $encoded.replace(reg,'$1\@$3');
		document.write("<a href='mailto:" + mail + "'>" + mail + "</a>");
	}

	function showlink($encoded, $inside) {
		var reg = new RegExp('(.*?)(<?php
echo addslashes(preg_quote($arSeparators[$atInd])); ?>)(.*)','g');
		var mail = $encoded.replace(reg,'$1\@$3');
		document.write("<a href='mailto:" + mail + "'>" + $inside + "</a>");
	}
