// Validate search form
function checkSearch()
{
	if ((document.synform.mot.value == 'enter keyword and select field') || (document.synform.mot.value == ''))
	{
		alert('Please enter at least one keyword to search');
		document.synform.mot.focus();
		return (false)
	}
	else if ((document.synform.mot.value != '') && (document.synform.section.value == 'membershipdownloads'))
	{
		document.location.href='../joining/Joining_downloadssearchresults.asp?faculty=&Doctype=&searchString=@FacultyID=14,@DocumentTitle="'+document.synform.mot.value+'",@OrderByTitleASC="1"';
		return (false)
	}
	else
	{
		return (true)
	}
};