// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function linkFromFlash(falshPass){
	//jump先URL
	var url;
	
	switch (falshPass) {
	//トップ
	case "home":
		url = "../index.html"
	    break;

	//生搾りみがき麦
	case "about":
	    url = "../about/index.html"
	    break;

	//ギャラリー
	case "gallery":
	    url = "../tvcm/index.html"
	    break;

	//小料理屋「善」
	case "zen":
	    url = "../zen/index.html"
	    break;

	//キャンペーン
	case "cp1":
	    url = "../campaign/index.html"
	    break;

	//ファン会報
	//case "fan":
	//    url = "/fan/index.html"
	//    break;

	//小さな善意、懸賞募集！
	//case "nama":
	//    url = "/gallery/zenni.html"
	//    break;

	default:
	    break;
	}
	MM_openBrWindow(url,"_self","");
}