function QSearchCheck()
{
	if(document.QSearchForm.QSearch.value == 'Search all properties' &&
     document.QSearchForm.qdeveloper.options[document.QSearchForm.QLocationID.selectedIndex].value == '' &&
		 document.QSearchForm.qlandtitle.options[document.QSearchForm.QTypeID.selectedIndex].value == '')
  {
		alert('Please input a search term or select an item from the dropdown list.');
    return false;
	}
	return true;
}
