	 function getAHFdata()	{
		 // send data to CF
		DWRUtil.useLoadingMessage();
		DWREngine._execute(_ajaxConfig._cfscriptLocation, null, 'getFilteredImpounds','','','','','','','false', getResult);  
	} 

	 function getResult(result)
	{
		document.getElementById("info").innerHTML = result;
	}
	
	function loadInfo()
	{
		var AType = DWRUtil.getValue("Type");
		var ABreed = DWRUtil.getValue("Breed");
		var ASex = DWRUtil.getValue("Sex");
		var AHair = DWRUtil.getValue("Hair");
		var AColour = DWRUtil.getValue("Colour");
		var AAge = DWRUtil.getValue("Age");
		
		if(AType=='')
		{
			AType = 'All';
		}
		if(ABreed=='')
		{
			ABreed = 'All';
		}
		if(ASex=='')
		{
			ASex = 'All';
		}
		if(AHair=='')
		{
			AHair = 'All';
		}
		if(AColour=='')
		{
			AColour = 'All';
		}
		if(AAge=='')
		{
			AAge = 'All';
		}
		
		DWRUtil.useLoadingMessage();
		DWREngine._execute(_ajaxConfig._cfscriptLocation, null, 'getFilteredImpounds', AType, ABreed, ASex, AHair, AColour, AAge, 'false', getResult); 
	} 
