//******** サブメニューの表示/非表示を切替える。********
function showSubMenu(id) {
	if (document.all) {
		document.all[id].style.display='block';
	}else if(document.getElementById(id)) {
		document.getElementById(id).style.display='block';
	}
	return;
}
function hideSubMenu(id){
	if (document.all) {
		document.all[id].style.display='none';
	}else if(document.getElementById(id)) {
		document.getElementById(id).style.display='none';
	}
	return;
}
function changeBgColor(id,color){
	if (document.all) {
		document.all[id].style.backgroundColor=color;
	}else if(document.getElementById(id)) {
		document.getElementById(id).style.backgroundColor=color;
	}
	return;
}

//********地図ウィンドウを表示*********
function openWindow(){
	win1=window.open("","NewOne","toolbar=0,directories=0,width=500,height=350");
	win1.document.write("<html><body background='./img/ohura.gif'>");
	win1.document.write("</body></html>");
	win1.document.close();
}

