function chkForageKeyWordField(strFormName) 
{	
	var strCheckFormName 
		strCheckFormName = strFormName

	if ( strCheckFormName.ForageKeyWord.value == "" ) 
	{
		alert("進行搜索時請輸入關鍵字");
			strCheckFormName.ForageKeyWord.focus();
	} 
	else 
		if ( strCheckFormName.ForageKeyWord.value.length < 0 ) 
		{
			alert("進行搜索時請輸入二個以上的關鍵字");
				strCheckFormName.ForageKeyWord.focus();
		} 
		else
		{
			return true;
		}

	return false;
}