function comprobar(frm)
{
	if (frm.nombre.value == '')
	{
		alert("Debe introducir el nombre.");
		frm.nombre.focus();
		return false;
	}
		if (frm.apellidos.value == '')
	{
		alert("Debe introducir los apellidos.");
		frm.apellidos.focus();
		return false;
	}
		if (frm.dni.value == '')
	{
		alert("Debe introducir el DNI o CIF.");
		frm.dni.focus();
		return false;
	}
	
	if ( frm.direccion.value == "" )
	{
		alert("Debe introducir la direccion.");
		frm.direccion.focus();
		return false;
	}

	if ( frm.poblacion.value == "" )
	{
		alert("Debe introducir la poblacion.");
		frm.poblacion.focus();
		return false;
	}
		if ( frm.cp.value == "" )
	{
		alert("Debe introducir el código postal.");
		frm.cp.focus();
		return false;
	}

	if (frm.telf.value.length==0) {
		alert("El teléfono es un campo obligatorio.");
		frm.telf.focus();
		return false;
	}
	if (frm.email.value == "")
	{
		alert("Debe introducir el email.");
		frm.email.focus();
		return false;
	}
	if (frm.clave.value == "")
	{
		alert("Debe introducir la clave.");
		frm.clave.focus();
		return false;
	}
	if (frm.rclave.value == "")
	{
		alert("Debe repetir la clave.");
		frm.rclave.focus();
		return false;
	}	
		if (frm.rclave.value != frm.clave.value)
	{
		alert("Las claves deben ser iguales.");
		frm.rclave.focus();
		return false;
	}	


document.frmalta.submit(); 
}


