function validate() {
// Text values
  if (document.form.AdiSoyadi.value.length < 7) {
   alert("Please fill your Name and Family Name -completely-.");
   return false;
 }
  if (document.form.email.value.length < 5) {
   alert("Please fill e-mail address field -completely-.");
   return false;
 }
 if (document.form.not.value.length < 6) {
   alert("Please fill a note. (At least two words)");
   return false;
 }
 return true;
}