function Validator(theForm)
{

  if (theForm.firma.value == "")
  {
    alert("Firma kısmını boş bıraktınız");
    theForm.firma.focus();
    return (false);
  }


  if (theForm.TEL.value == "")
  {
    alert("Telefon kısmını boş bıraktınız ");
    theForm.TEL.focus();
    return (false);
  }


  var chkVal = theForm.TEL.value;
  var prsVal = chkVal;
  

  
  if (theForm.MESAJ.value == "")
  {
    alert("Lütfen mesajınızı yazınız ");
    theForm.TEL.focus();
    return (false);
  }
  return (true);
}