<!--
function FormValidation(theForm)
{

	if (theForm.PaymentType.value == "")
	{
   		alert("Favor escribir un valor en el campo \"Forma de pago\".");
		theForm.PaymentType.focus();
		return (false);
	}


  if (theForm.realname.value == "")
  {
    alert("Favor escribir un valor en el campo \"Nombre\".");
    theForm.realname.focus();
    return (false);
  }

  if (theForm.address.value == "")
  {
    alert("Favor escribir un valor en el campo  \"Dirección\".");
    theForm.address.focus();
    return (false);
  }


  if (theForm.city.value == "")
  {
    alert("Favor escribir un valor en el campo \"Ciudad\".");
    theForm.city.focus();
    return (false);
  }


  if (theForm.state.value == "")
  {
    alert("Favor escribir un valor en el campo \"Estado\".");
    theForm.state.focus();
    return (false);
  }


	if (theForm.zip.value == "")
	{
		alert("Favor escribir un valor en el campo \"Código postal\".");
		theForm.zip.focus();
		return (false);
	}


  if (theForm.phone.value == "")
  {
    alert("Favor escribir un valor en el campo \"Teléfono\".");
    theForm.phone.focus();
    return (false);
  }


  if (theForm.email.value == "")
  {
    alert("Favor escribir un valor en el campo \"Email\".");
    theForm.email.focus();
    return (false);
  }

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