function checkemail(f) {
  if(f.email.value.length<5) {
    alert('Why not give us your email address before you hit that button?');
    f.email.focus();
    return false;
  }
  return true;
}