function verificar(formulario)
{
	var datosEmpty = new Array() 
	// NIF
	if (document.getElementById('nif').value == '')
		datosEmpty.push('NIF');
	// Nombre
	if (document.getElementById('nombre').value == '')
		datosEmpty.push('Nombre');
	// Apellido 1
	if (document.getElementById('ape1').value == '')
		datosEmpty.push('Apellido 1');
	// Apellido 2
	if (document.getElementById('ape2').value == '')
		datosEmpty.push('Apellido 2');
	// Dirección
	if (document.getElementById('direccion').value == '')
		datosEmpty.push('Dirección');
	// Población
	if (document.getElementById('poblacion').value == '')
		datosEmpty.push('Población');
	// Código postal
	if (document.getElementById('cp').value == '')
		datosEmpty.push('Código postal');
	// Provincia
	if (document.getElementById('provincia').value == '')
		datosEmpty.push('Provincia');
	// País
	if (document.getElementById('pais').value == '')
		datosEmpty.push('País');
	// Fecha de nacimiento
	if ((document.getElementById('fnacimiento').value == '') || (document.getElementById('fnacimiento').value == 'dd/mm/yyyy'))
		datosEmpty.push('Fecha de nacimiento');
	// Profesión
	if (document.getElementById('profesion').options[document.getElementById('profesion').selectedIndex].value == '')
		datosEmpty.push('Profesión');
	// Teléfono
	if (document.getElementById('telf').value == '')
		datosEmpty.push('Teléfono');
	// Mail
	if (document.getElementById('mail').value == '')
		datosEmpty.push('E-mail');
	// Cuota
	var radios = formulario.elements['cantidad'];
	var checked = false;
	for (i=0;i<radios.length;i++) 
	{
		if (radios[i].checked) 
		{
			value = radios[i].value;
			if ((value == '0') && (document.getElementById('otro').value.length == 0))
			{
				datosEmpty.push('Cantidad de la cuota');
				break;
			}
			else
			{
				value = document.getElementById('otro').value;
			}
			document.getElementById('cuota').value = value;
		}
	}
	// Periodicidad por defecto es mensual
	// cc_entidad / cc_oficina / cc_dc / cc_cuenta
	if ((document.getElementById('cc_entidad').value != '') && (document.getElementById('cc_oficina').value != '') &&
		(document.getElementById('cc_dc').value != '') && (document.getElementById('cc_cuenta').value != ''))
	{
		cc_entidad = document.getElementById('cc_entidad').value;
		cc_oficina = document.getElementById('cc_oficina').value;
		cc_dc = document.getElementById('cc_dc').value;
		cc_cuenta = document.getElementById('cc_cuenta').value;
		document.getElementById('ccc').value = cc_entidad+'/'+cc_oficina+'/'+cc_dc+'/'+cc_cuenta;
	}
	else
		datosEmpty.push('Cuenta del banco');
	// Entidad
	if (document.getElementById('entidad').value == '')
		datosEmpty.push('Banco/caja');
		
	if (datosEmpty.length != 0)
	{
		texto = "Todos los campos son obligatorios. Falta por rellenar:  ";
		for(i=0;i<datosEmpty.length;i++)
		{
			texto = texto + datosEmpty[i];
			if (i < (datosEmpty.length - 1))
				texto = texto + ', ';
		}
		alert(texto);
	}
	else
	{
		formulario.submit();
	}
}