function Validar(datos){
  if (datos.nombre.value == "")
  {
    alert("Debe ingresar el nombre de la persona a contactar");
    datos.nombre.focus();
    return (false);
  }

  if (datos.telefono.value == "")
  {
    alert("Ingrese el número de teléfono para poder comunicarnos");
    datos.telefono.focus();
    return (false);
  }

  if (datos.email.value == "")
  {
    alert("Ingrese el email del la persona a contactar");
    datos.email.focus();
    return (false);
  }

  if (datos.ciudad.value == "")
  {
    alert("Ingrese el nombre de la ciudad");
    datos.ciudad.focus();
    return (false);
  }

  if (datos.pais.value == "")
  {
    alert("Ingrese el nombre del país");
    datos.pais.focus();
    return (false);
  }
 return true;
}
