function pr_email(code) {
	$.ajax({
	  type: "GET",
	  url: "/protectemail.php",
	  data: "code="+code,
	  dataType: "text",
	  async: true,
	  cache: true,
	  success: function(html){
		  if (html!="") {
			  location.href = 'mailto:'+html;
		  }
	   }
	});
}