function modifyPeople(param1, param2, param3){
	//alert("we are here");
	var theWindow = window.open("","subWin","menubar=yes,width=600,height=450,scrollbars=yes,resizable=yes,titlebar=yes,left=0,top=0");  		
	document.form.target=theWindow.name;
	document.form.action = "secure/DisplayModifyRow.do?theID="+param1+"&tableType=PEOPLE&listPos=2";
	document.form.method="POST";
	document.form.submit();	
}

function modifyPlace(param1) {
	var theWindow = window.open("","subWin","menubar=yes,width=600,height=450,scrollbars=yes,resizable=yes,titlebar=yes,left=0,top=0");  		
	document.form.target=theWindow.name;
	document.form.action = "secure/DisplayModifyRow.do?theID="+param1+"&tableType=PLACE&listPos=2";
	document.form.method="POST";
	document.form.submit();		
}

function changeSearchRows(param2){
	var frm = window.document.form;
	var url = "Search.do?Cat="+param2+"&searchText=ALL";
	frm.action = url
	frm.submit();
}

function changePlaceRows(param1, param2) {
	var frm = window.document.form;
	var url = "SearchPlace.do?searchText=ALL&searchText1="+param1+"&searchText2="+param2;
	frm.action = url;
	frm.submit();
}