function location_display(location_id) { 
	if(document.getElementById(location_id)) { 
		if(document.getElementById(location_id).style.display!='none')document.getElementById(location_id).style.display='none'; 
		else document.getElementById(location_id).style.display=''; 
	} else alert('Sector Not Found!'); 
}
