// JavaScript Document

//プルダウンメニュー画像表示を早くする

try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(e) {}


//プルダウンメニュー詳細設定
function Menu(LayerName, IsShow) {
	if (IsShow)	{
		//表示
		document.getElementById(LayerName).style.display = "block";
	} else {
		//非表示
		document.getElementById(LayerName).style.display = "none";	
	}
}
