function Comprobar() {
if (!DOM) return true;
var Mensaje = new Array('Por favor, rellene todos los datos indicados con asterisco. \nGracias.', 'Por favor, indique correctamente su e-mail. \nGracias.', 'dele.html');
var Elementos = new Array('Apellidos', 'Nombre', 'Pasaporte', 'Nacionalidad', 'Direccion', 'Ciudad', 'Pais', 'eMail', 'Nivel', 'Opcion', 'Pago'); 
for (var i=0; i<Elementos.length; i++) {
	hayValor = false;
	var Elemento = document.getElementsByName(Elementos[i]);
	if (Elemento[0].type=='radio') {
		for (var j=0; j<Elemento.length; j++) {
			if (Elemento[j].checked) hayValor = true;
			}
		}
	else {
		hayValor = (!esBlanco(Elemento[0].value));
		}
	if (hayValor==false) {
		alert(Mensaje[0]); 
		return false;
		}
	}
if (!esEmail(document.getElementById('eMail').value)) {
	alert(Mensaje[1]); 
	return false;
	}
return true; 
}

