<!--
// メニューバーHTMLロード
function CreateMBar(sType, iGroupsNo) 
{
	// クリック時にドラッグしてしまった場合
	if (parent.window.frames.length == 0) {
//		// 地図なしのカテゴリ
//		if ("hira_all.gif" == "") {
//			location = "nomap.html";
//
//		// 地図ありのカテゴリ
//		} else {
//			location = "map.html";
//		}
		return;
	}

	// HTMLをロードする
	if (sType == "g") {
		parent.mbar.location = "g_mbar.html";
	} else if (sType == "search") {
		parent.mbar.location = "search_mbar.html";
	} else if (sType == "full") {
		parent.mbar.location = "full_mbar.html";
	} else if (sType == "c") {
		parent.mbar.location = "c_mbar.html";
	} else if (sType == "contents") {
		parent.mbar.location = "contents" + iGroupsNo + "_mbar.html";
	}
}

// 地図スクロール
function DspOnMap(iContentsNo) 
{
	// 地図なしのカテゴリ
	if ("hira_all.gif" == "") {
		return;
	}
	// クリック時にドラッグしてしまった場合
	if (parent.window.frames.length == 0) {
		return;
	}
    parent.frame1.document.ScrollMapSub.dspContents(iContentsNo);
}

//-->
