var x;x=$(document);x.ready(initForms);function initForms(){$("#tabs").tabs();$("#btnEnviarDatos").click(DatosAutenticacion)}function DatosAutenticacion(){var a=$("#txtIdPostulante").val(),b=$("#txtEmailPostulante").val(),c=$("#txtFechaNacimiento").val();$.ajax({type:"POST",contentType:"application/x-www-form-urlencoded",url:"procesarAutenticacion.php",data:"idPostulante="+a+"&emailPostulante="+b+"&fechaNacimiento="+c,success:llegadaDatosAutenticacion,timeout:4000});return false}function llegadaDatosAutenticacion(a){var b=$("#divMensaje"),c=$("#txtIdPostulante").val(),d=$("#txtEmailPostulante").val(),e=$("#txtFechaNacimiento").val(),f;mensaje=a.split(":");if(mensaje[0]=="Advertencia"){f='<img src="images/error.png" width="25" height="25">';b.html(f+a)}else location.href="frmHojaVida.php?"+a}