var ajax = new sack();
	var currentdistrict_code=false;
	function getClientData()
	{
		var district_code = document.getElementById('district_code').value;
		if(district_code!=currentdistrict_code){
			currentdistrict_code = district_code
			ajax.requestFile = 'inc/aanmelden_lookup.asp?district_code='+district_code;	// 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['clientForm'];	
		eval(ajax.response);
	}
function showClientData()
{
	var formObj = document.forms['clientForm'];	
	eval(ajax.response);
}


function initFormEvents()
{
	document.getElementById('district_code').onblur = getClientData;
	document.getElementById('district_code').focus();
}


window.onload = initFormEvents;

