$(document).ready(function(){
	$("p.btn a").click(function(){
		var rst = $("div#searchdetail form input:checkbox:checked").length;
		if(rst){
			$('div#searchdetail form').submit();
		}else{
			window.alert("検索条件を指定して下さい。");
		}
		return false;
	});
});

