function checkEmptySearchField(objForm){
	if(objForm.search.value==''){
		return false;
	}
	return true;
}
