// *********************************** //
// メニューボタン表示切り替え処理
// *********************************** //
function swapImg(name, num) {

	var Imgfile = "";

	Imgfile = '/shiogama/img/' + name + '_' + num + '.gif';

	document.images[name].src = Imgfile;
}


// *********************************** //
// DIV表示切り替え処理
// *********************************** //
function showhide(idName){
	if(document.getElementById){

		// ページ内DIV要素の取得
		var nodeList = document.getElementsByTagName("div");
		var num = nodeList.length;

		for(var i in nodeList){
			if(nodeList[i].id){
				var node = nodeList[i].id;
				if(node.match(/disp(\d+)/)) {
					if(node == idName){
						document.getElementById(idName).style.display = "block";
					} else {
						document.getElementById(node).style.display = "none";
					}
				}
			}
		}
	}
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

