var ajax = new sack(); var currentgworld=false; function getClientData() { var gworld = document.getElementById('q[1103]').value.replace(/[^0-9]/g,''); if(gworld.length==6 && gworld!=currentgworld){ currentgworld = gworld ajax.requestFile = '../lookup.php?gworld='+gworld+'&surveyID=110'; // Specifying which file to get ajax.onCompletion = showClientData; // Specify function that will be executed after file has been found ajax.runAJAX(); // Execute AJAX function } } function showClientData() { var formObj = document.forms['form']; eval(ajax.response); } function initFormEvents() { document.getElementById('q[1103]').onblur = getClientData; document.getElementById('q[1103]').focus(); } window.onload = initFormEvents;