function emailSignup() {
  var email=document.getElementById("s_email").value;
  if (email.indexOf("@")<1) {
    alert("You need to enter a valid E-Mail address!");
    return;
  }
  window.open("/emailsignup?"+email,"remote","width=400,height=100");
}
