// JavaScript Document
function showPerson() {
var filter =
	{
		"misc": 		[{ "f" : "all", "displayName" : "All", "listID" : "f-all" } ],
		"byDate":	[{ "f" : "lastmonth", "displayName" : "Last Month", "listID" : "f-lastmonth"},
					 { "f" : "lastyear", "displayName" : "Last Year", "listID" : "f-lastyear"}]
	};
window.document.url+='#f='+filter.byDate[0].f;
}

