function searchBusinessObject() {

	form = document.SearchForm;
	form.action="/servlet/services?object=SearchModel&command=search"
	form.command.value = "search";
	form.submit();
				
}


function newBusinessObject() {

	form = document.SearchForm;
	form.command.value = "new";
	form.submit();
				
}

function resetSearchModel() {

	form = document.SearchForm;
	form.command.value = "reset";
	form.submit();
				
}
