function openWindow(url, width, height) {
  popup = window.open(url, "Popup", "width=" + width + ",height=" + height + ",left=0,top=0");
  popup.focus();
}

function schnabeltasse(user,domain) {
  address = "mailto:" + user + "@" + domain;
  window.location = address;
}
