<!--

function launch_success() {
window.open("about:blank", "successwin", "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,directories=no,location=no,width=305,height=255,left=200,top=100")
return true;
}

function Validator(theForm)
{

  if (theForm.Company.value == "")
  {
    alert("Por favor, digite el nombre de la Compañia\nPlease enter a value for the \"Comany Name\" field.");
    theForm.Company.focus();
    return (false);
  }

  if (theForm.firstname.value == "")
  {
    alert("Por favor, digite su Nombre.\nPlease enter a value for the \"First Name\" field.");
    theForm.firstname.focus();
    return (false);
  }

  if (theForm.lastname.value == "")
  {
    alert("Por favor, digite su Apellido.\nPlease enter a value for the \"Last Name\" field.");
    theForm.lastname.focus();
    return (false);
  }

  if (theForm.position.value == "")
  {
    alert("Por favor, digite su Posición.\nPlease enter a value for the \"Position\" field.");
    theForm.position.focus();
    return (false);
  }

  if (theForm.city.value == "")
  {
    alert("Por favor, digite su Ciudad.\nPlease enter a value for the \"City\" field.");
    theForm.city.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Por favor, digite su E-mail.\nPlease enter a value for the \"Email\" field.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.text.value == "")
  {
    alert("Por favor, digite su Texto.\nPlease enter a value for the \"Your text\" field.");
    theForm.text.focus();
    return (false);
  }
  launch_success();
  return (true);
}
// -->
