function popup(url) {
  window.open("http://"+url);
}

function mail(email) {
  email=email.replace("|", "@");
  location.href="mailto:"+email;
}
