﻿
				function check_hurry_find(){
					var keyword = document.frames["hurry_find"].keyword.value;
					var title = document.frames["hurry_find"].title;
					var content = document.frames["hurry_find"].content;
					var law_db_type = document.frames["hurry_find"].law_db_type;

					if(keyword != "" ){
						if(!title.checked && !content.checked){
							alert("错误提示：对不起，标题或内容不能为空！");
							return false;
						}
					}
					if(keyword == "" ){
					alert("错误提示：对不起，请选择填写关键词。");
					return false;
					}
					if(!law_db_type[0].checked && !law_db_type[1].checked){
						alert("错误提示：对不起，请选择要查询的库。");
						return false;
					}
openDIV();
					return true;
				}