function formFocus(the_email) {
  if(the_email == 'your email') {
    document.signup.email.value = '';
  }
}

function formBlur(the_email) {
  if(the_email == '') {
    document.signup.email.value = 'your email';
  }
}