//====================================================================================================
//	File Name		:	walking_in_the_faith.js
//	# File Version: v 1.0
//	# Created By: Maulik Chandarana
//	# Created On: 21 March 2007
//	# Last Modified By:
//	# Last modified On:
//  # Purpose : This is file carries validation and other related function for Walking In The Faith page.
//----------------------------------------------------------------------------------------------------

//====================================================================================================
//	Function Name	:	Click_Search()
//	Created By: Maulik Chandarana
//	Created On: 21 March 2007
//	Last Modified By:
//	Last modified On:
//  Purpose : Post the page to get list of articles for entered searching criteria
//  Parameters: frm : Form Object
//----------------------------------------------------------------------------------------------------
function Click_Search(frm)
{
	with(frm)
	{
		if(!IsEmpty(txtKeyword, 'Please Enter the Keyword to Search'))
        {
			return false;
        }		
		hdMode.value = "Search";
		submit();
	}
}