// JavaScript Document

//====================================================================================================
//	Function Name	:	Show_Click()
//	Purpose			:	This function will set the office id and action and then submit the form.
//	Parameters		:	OfficeId  - Partner Id whose detail will to be shown
//	Return			:	none
//----------------------------------------------------------------------------------------------------
function Show_Click1(Dir_CatId,Dir_UserId)
{
	
	with(document.frmsearchresult)
	{
		popupWindowURL("catlisting.php?Action=Show&dir_catid="+Dir_CatId+"&dir_user_id="+Dir_UserId, 'Show', 700, 550, false, false, true);
	}
}

