function menuLink(linkLoc){
if (linkLoc != ""){
window.location=linkLoc;
}
}

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

function toggle_disp(itemId) {
	var elem, disp;

	if (document.all) {
		elem = document.all(itemId);
	} else if (document.getElementById) {
		elem = document.getElementById(itemId);
	} else {
		alert("ご使用のブラウザでは店名が表示されないので、「全店表示」をクリックしてください。");
	}
	disp = elem.style.display;
	if(disp == "block") {
		disp = "none";
	} else {
		disp = "block";
	}
	elem.style.display = disp;
}

