// JavaScript Document

<!--
function formKontrol(theForm) {

  if (theForm.adi.value == "")
  {
    alert("Lütfen Adı Giriniz");
    theForm.adi.focus();
    return (false);
  }
  if (theForm.soyadi.value == "")
  {
    alert("Lütfen Soyadı Giriniz");
    theForm.soyadi.focus();
    return (false);
  }
  if (theForm.email.value == "")
  {
    alert("Lütfen E-Mail Giriniz");
    theForm.email.focus();
    return (false);
  }
  if (theForm.cep.value == "")
  {
    alert("Lütfen Cep Telefonu Giriniz");
    theForm.cep.focus();
    return (false);
  }
  
  return(true);
}

function formKontrol2(theForm) {

  if (theForm.musteri[0].checked==false && theForm.musteri[1].checked==false)
  {
    alert("Lütfen Müşteri Durumunuzu Seçiniz");
    theForm.musteri[0].focus();
    return (false);
  }
  if (theForm.konu.value == "")
  {
    alert("Lütfen Konu Seçiniz");
    theForm.konu.focus();
    return (false);
  }
  if (theForm.ad.value == "")
  {
    alert("Lütfen Adınızı Giriniz");
    theForm.ad.focus();
    return (false);
  }
  if (theForm.soyad.value == "")
  {
    alert("Lütfen Soyadı Giriniz");
    theForm.soyad.focus();
    return (false);
  }
  if (theForm.telefon.value == "")
  {
    alert("Lütfen Telefon Giriniz");
    theForm.telefon.focus();
    return (false);
  }
  if (theForm.email.value == "")
  {
    alert("Lütfen E-Mail Giriniz");
    theForm.email.focus();
    return (false);
  }
  
  return(true);
}

//-->
