// JavaScript Document
<!--
function Form1_Validator(theForm)
{

    if (theForm.subject.value == "")
  {
    alert("กรุณาป้อน ติดต่อเรื่อง");
    theForm.subject.focus();
    return (false);
    
  } 

  if (theForm.yourname.value == "")
  {
    alert("กรุณาป้อน ชื่อ - นามสกุล");
    theForm.yourname.focus();
    return (false);
  }
  
    if (theForm.email.value == "")
  {
    alert("กรุณาป้อน  email");
    theForm.email.focus();
    return (false);
  }

 
  return (true);
}
//-->
