﻿// JScript File
function Validator(theForm)
{
if (theForm.Your_Phone.value == "" || theForm.Your_Phone.value == "enter your phone no.")
  {
    alert("Please enter Your Phone No.");
    theForm.Your_Phone.focus();
    return (false);
  }
if (theForm.Your_Name.value == "" || theForm.Your_Name.value == "enter your name")
  {
    alert("Please enter Your Name");
    theForm.Your_Name.focus();
    return (false);
  }
return (true);
}

