function FrontPage_Form2_Validator(theForm)
{
  if (theForm.p1.selectedIndex < 0)
  {
    alert("Required: Please choose a selection from each option in order to add the product to the cart.");
    theForm.p1.focus();
    return (false);
  }

  if (theForm.p1.selectedIndex == 0)
  {
    alert("Required: Please choose a selection from each option in order to add the product to the cart.");
    theForm.p1.focus();
    return (false);
  }
  
  if (theForm.p2.selectedIndex < 0)
  {
    alert("Required: Please choose a selection from each option in order to add the product to the cart.");
    theForm.p2.focus();
    return (false);
  }

  if (theForm.p2.selectedIndex == 0)
  {
    alert("Required: Please choose a selection from each option in order to add the product to the cart.");
    theForm.p2.focus();
    return (false);
  }
  
  if (theForm.p3.selectedIndex < 0)
  {
    alert("Required: Please choose a selection from each option in order to add the product to the cart.");
    theForm.p3.focus();
    return (false);
  }

  if (theForm.p3.selectedIndex == 0)
  {
    alert("Required: Please choose a selection from each option in order to add the product to the cart.");
    theForm.p3.focus();
    return (false);
  }
  return (true);
}

