function enviarFormulario() {
			var strNombre = document.frmSolicitud.Nombre.value;
			var strApellido1 = document.frmSolicitud.Apellido1.value;
			var strTlf1 = document.frmSolicitud.Telefono1.value;
			var strEmail1 = document.frmSolicitud.sdemail1.value;

			if ( strNombre == "" ) {
				alert("Por favor, introduzca su nombre");
				document.frmSolicitud.Nombre.focus();
			} else if ( strApellido1 == "" ) {
				alert("Por favor, introduzca al menos, su primer apellido");
				document.frmSolicitud.Apellido1.focus();
			} else if ( strTlf1 == "" ) {
				alert("Por favor, introduzca al menos, un teléfono de contacto");
				document.frmSolicitud.Telefono1.focus();
			} else if (!checkNumPhone(strTlf1)) {
				alert("Por favor, introduzca un teléfono de contacto válido");
				document.frmSolicitud.Telefono1.focus();
			} else {
				document.frmSolicitud.action = "http://www.securitasdirect.es/webcomercial/contacto/frmContacto_RC.jsp";
				document.frmSolicitud.btSubmit.disabled = true;
				document.frmSolicitud.btCambiar.disabled = true;
				MM_showHideLayers('capabar','','show','bar','','show');
				document.frmSolicitud.submit();
			}
		}
