	
	function searchObject(type, thing) {
		document.getElementById("_pos").value = 0;
		document.getElementById("amount_range").value = "";
		if (type == "commissioner") {
			document.getElementById("district").value = thing.toLowerCase();
			document.getElementById("business").value = "";
		} else {
			document.getElementById("district").value = "";
			document.getElementById("business").value = thing;			
		}
		loadData();
	}
	
	function loadCommissioner(district) {
		jQuery("#legendBox").load("controller/servlet.php?action=district&district=" + district);
	}
	
	function loadBusiness(entity) {
		jQuery("#legendBox").load("controller/servlet.php?action=entity&entity=" + escape(entity));
	}


