function Validator(ContactForm)
{
 
   if (ContactForm.Name.value == "")
  {
   alert("Please enter your Name");
   return false;  
  }

  if (ContactForm.Email.value == "")
  {
   alert("Please enter your Email");
   return false;  
  }
  
 
}
 
function GetStartValidator(GetStartForm)
{
 
   if (GetStartForm.Name.value == "")
  {
   alert("Please enter your Name");
   GetStartForm.Name.focus();
   return false;  
  }

  if (GetStartForm.email.value == "")
  {
   alert("Please enter your Email");
   GetStartForm.email.focus(); 
   return false;  
  }

  if (GetStartForm.Phone1.value == "")
  {
   alert("Please enter your Phone Number");
   GetStartForm.Phone1.focus();
   return false;  
  }
  
 
}