function validateForm(form) {
  
  if (form.name.value == "") { //This checks to make sure the field is not empty
  alert("You have not entered your name."); //Informs user of empty field
  form.name.focus( ); //This focuses the cursor on the empty field
  return false; //This prevents the form from being submitted
  }

  if (form.bandname.value == "") { //This checks to make sure the field is not empty
  alert("You have not entered Band/Label name."); //Informs user of empty field
  form.bandname.focus( ); //This focuses the cursor on the empty field
  return false; //This prevents the form from being submitted
  }

  if (form.email.value == "") { //This checks to make sure the field is not empty
  alert("You have not entered your email address."); //Informs user of empty field
  form.email.focus( ); //This focuses the cursor on the empty field
  return false; //This prevents the form from being submitted
  }

  if (form.phone.value == "") { //This checks to make sure the field is not empty
  alert("You have not entered your phone number."); //Informs user of empty field
  form.phone.focus( ); //This focuses the cursor on the empty field
  return false; //This prevents the form from being submitted
  }




}
