function CheckData(theForm) {
  if (!theForm.email.value || theForm.email.value == '') {
    window.alert('Please enter a email!');
    return false;
  }
  return true;
}
