<!-- For Search Form checking -->
function check_form(formName)
{
	if	(
			(formName.part_or_keyword.value.length < 2 )
			||
			(formName.part_or_keyword.value == "SEARCH" )
			||
			(formName.part_or_keyword.value == "PART # SEARCH" )
			||
			(formName.part_or_keyword.value == "enter keyword(s) or part #" )
		)
	{
		alert('Please enter your word search into the Part Number or Keyword box - thank you!');
		return false;
	}	
	
	return true;
}
