function SiteEkle_Validator(theForm)
{
  if (theForm.isim.value == "")
  {
    alert("Lütfen sitenizin isminiz giriniz");
    theForm.isim.focus();
    return (false);
  }
  if (theForm.url.value.length < 10)
  {
    alert('Lütfen sitenin adresini giriniz');
    theForm.url.focus();
    return (false);
  }
  if (theForm.kategori.value == "")
  {
    alert("Lütfen kategori seçiniz");
    theForm.kategori.focus();
    return (false);
  }
  if (theForm.sahip.value == "")
  {
    alert("Lütfen isminizi giriniz");
    theForm.sahip.focus();
    return (false);
  }
  if (theForm.email.value == "")
  {
    alert("Lütfen email adresinizi giriniz.");
    theForm.email.focus();
    return (false);
  }
  return (true);
}


