<!--
function FormValidation(theForm)
{

	if (theForm.PaymentType.value == "")
	{
   		alert("Please enter a value for the \"Payment type\" field.");
		theForm.PaymentType.focus();
		return (false);
	}


  if (theForm.realname.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.realname.focus();
    return (false);
  }

  if (theForm.address.value == "")
  {
    alert("Please enter a value for the \"Address\" field.");
    theForm.address.focus();
    return (false);
  }


  if (theForm.city.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.city.focus();
    return (false);
  }


  if (theForm.state.value == "")
  {
    alert("Please enter a value for the \"State\" field.");
    theForm.state.focus();
    return (false);
  }


	if (theForm.zip.value == "")
	{
		alert("Please enter a value for the \"Zip Code\" field.");
		theForm.zip.focus();
		return (false);
	}


  if (theForm.phone.value == "")
  {
    alert("Please enter a value for the \"Phone\" field.");
    theForm.phone.focus();
    return (false);
  }


  if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.email.focus();
    return (false);
  }

	
} /*end of function*/			  
//-->

