
function mail_adr(str){
	str = str.replace(/==/, '@');
	str = str.replace(/=/g, '.');
	document.write("<a style=\"color:#667;\" href='mailto:" + str + "'>");
	document.write(str);
	document.write("</a>");
	
}