function AlphaClick(selection)
	{
		var newLocation;
	
		if(selection == 'All')
		{
			newLocation=location.href.replace(location.search, '');
			window.location.replace(newLocation);
		}
		else if(selection == 'Member' || selection == 'Associate' || selection == 'Correspondent')
		{
			var locationSearch = location.search.toString();
			if(locationSearch.length <= 0)
			{
				window.location.replace(window.location.href + '?admin/PraxityFirms.TypeofMember='+selection);
			}
			else
			{
				newLocation=location.href.replace(location.search, '?admin/PraxityFirms.TypeofMember='+selection);
				window.location.replace(newLocation);
			}
		}
	}
