function Validator(theForm)
{
  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the \"Your full name\" field.");
    theForm.Name.focus();
    return (false);
  }
  
  if (theForm.BusName.value == "")
  {
    alert("Please enter a value for the \"Your business name\" field.");
    theForm.BusName.focus();
    return (false);
  }
  
  if (theForm.EmailAddress.value == "")
  {
    alert("Please enter a value for the \"Email address\" field.");
    theForm.EmailAddress.focus();
    return (false);
  }

  if (theForm.Telephone.value == "")
  {
    alert("Please enter a value for the \"Telephone number\" field.");
    theForm.Telephone.focus();
    return (false);
  }
  
  if (theForm.Postcode.value == "")
  {
    alert("Please enter a value for the \"Postcode\" field.");
    theForm.Postcode.focus();
    return (false);
  }
  
  if (theForm.FeedOption.selectedIndex <= 0)
  {
    alert("Please select one of the \"Product feed listing\" options.");
    theForm.FeedOption.focus();
    return (false);
  }
    
  if (theForm.FeedCategory.selectedIndex <= 0)
  {
    alert("Please select one of the \"Product feed listing category\" options.");
    theForm.FeedCategory.focus();
    return (false);
  }
  
    if (theForm.FeedAccessMethod.selectedIndex <= 0)
  {
    alert("Please select one of the \"Product feed access method\" options.");
    theForm.FeedAccessMethod.focus();
    return (false);
  }

    if (theForm.FeedBusName.value == "")
  {
    alert("Please enter a value for the \"Business name for feed listings\" field.");
    theForm.FeedBusName.focus();
    return (false);
    
  }
  if (theForm.FeedFileName.value == "")
  {
    alert("Please enter a value for the \"File name and extension type\" field.");
    theForm.FeedFileName.focus();
    return (false);
  }
  return (true);
}