// JavaScript Document

function checkform()
{
  var error = "Bitte, verifizieren Sie Ihre persönliche Information:\n\n";
  var errores = 0;
  if (document.form1.nombre.value == "")
  {
    error += "Vorname \n";
	errores += 1;
  }
  if (document.form1.apellidos.value == "")
  {
    error += "Nachname \n";
	errores += 1;
  }
  if (document.form1.telefono.value == "")
  {
    error += "Telefon \n";
	errores += 1;
  }
  if (document.form1.email.value == "")
  {
    error += "E-mail \n";
	errores += 1;
  }
  if (document.form1.pais.value == "")
  {
    error += "Land \n";
	errores += 1;
  }
  if (errores == 0) 
  {
    document.form1.submit();
  }
    else
	{
	  alert(error);
	}
}

