function email(str){
	str=str.replace('|a|','@');
	str=str.replace(/\|d\|/g,'.');
	location='mailto:'+str;
}
