function submit_solicitud(frm)
{
	var mensaje='Por favor, inserte el dato ';
	
	if(frm['form_1[nombre]'].value==''){
		alert(mensaje + "Nombre"); 
		frm['form_1[nombre]'].focus();
		return false;
	}

	if(frm['form_1[apellido]'].value==''){
		alert(mensaje + "Primer apellido"); 
		frm['form_1[apellido]'].focus();
		return false;
	}

	/*if(frm['form_1[apellido2]'].value==''){
		alert(mensaje + "Segundo apellido"); 
		frm['form_1[apellido2]'].focus();
		return false;
	}*/

	if(frm['form_1[telefono]'].value==''){
		alert(mensaje + "Teléfono"); 
		frm['form_1[telefono]'].focus();
		return false;
	}

	/*if(frm['form_1[movil]'].value==''){
		alert(mensaje + "Móvil"); 
		frm['form_1[movil]'].focus();
		return false;
	}*/

	if(frm['form_1[email]'].value==''){
		alert(mensaje + "Email");
		frm['form_1[email]'].focus();
		return false;
	}else{
		if(!check_email(frm['form_1[email]'].value)){
			alert(mensaje + "Email");
			frm['form_1[email]'].focus();
			return false;   
		}  
	}

	if(frm['form_1[poblacion]'].value==''){
		alert(mensaje + "Población"); 
		frm['form_1[poblacion]'].focus();
		return false;
	}

	/*if(frm['form_1[provincia]'].selectedIndex == 0){
		alert(mensaje + "Provincia"); 
		frm['form_1[provincia]'].focus();
		return false;
	}*/

	frm.submit();
}
function check_email(address) { 
	if ( (address.indexOf ('@') == -1) || (address.indexOf ('.') == -1)) return false;   
	return true;
}
