function viewBusiness(puserId)
{
	document.searchForm.action="/business_details";
	document.searchForm.method.value="view";
	document.searchForm.UI.value = puserId;
	document.searchForm.submit();
}

function ReturnToList()
{
	document.searchForm.action="/business-directory";
	document.searchForm.method.value="search";
	document.searchForm.NI.value="";
	document.searchForm.UI.value="";
	document.searchForm.submit();
}
