function validateForm(f) {

	if (trim(f.nombre.value)=="") {		
		document.getElementById('lb_nombre').style.color="red";
		alert("El campo Nombre es obligatorio");
		f.elements['nombre'].focus();
		return false;
		}
	else
	{
		document.getElementById('lb_nombre').style.color="black";		
	}

	if (trim(f.ciudad.value)=="") {
		document.getElementById('lb_ciudad').style.color="red";
		alert("El campo Ciudad es obligatorio");
		f.elements['ciudad'].focus();
		return false;
		}
	else
	{
		document.getElementById('lb_ciudad').style.color="black";
	}

	if (trim(f.provincia.value)=="") {
		document.getElementById('lb_provincia').style.color="red";
		alert("El campo Provincia es obligatorio");
		f.elements['provincia'].focus();
		return false;
		}
	else
	{
		document.getElementById('lb_provincia').style.color="black";
	}
	
	if (trim(f.comunidad.value)=="") {
		document.getElementById('lb_comunidad').style.color="red";
		alert("El campo Comunidad es obligatorio");
		f.elements['comunidad'].focus();
		return false;
		}
	else
	{
		document.getElementById('lb_comunidad').style.color="black";
	}	
	
	if (trim(f.direccion.value)=="") {
		document.getElementById('lb_direccion').style.color="red";
		alert("El campo Direccion es obligatorio");
		f.elements['direccion'].focus();
		return false;
		}
	else
	{
		document.getElementById('lb_direccion').style.color="black";
	}
	
	if (trim(f.mail.value)!="") {
	
	    if (validateEmail(f.mail.value)==false){ 
		    document.getElementById('lb_mail').style.color="red";
		    alert("El campo Mail es incorrecto");		
		    f.elements['mail'].focus();
		    return false;
	    }
	    else
	    {
		    document.getElementById('lb_mail').style.color="black";
	    }
	    
	}
	
	return true;
	
}
