//一覧画面のチェックボックスチェック判別
	function nextPage(form){
		var Num = 0;

		for (i = 0; i < form.length; i++) {
			if (form.elements[i].name == 'CHK' && form.elements[i].checked){
				Num = 1;
			}
		}

		if (Num == 0) {
			alert('物件を選択して下さい。');
			return false;
		}
		return true;
	}

//詳細画面画像拡大
	function MM_openBrWindow(theURL,winName,features) { //v2.0
		window.open(theURL,winName,features);
	}