//==================================================//  「裁決事例要旨集」目次スクリプト//==================================================	function menu(text){		document.write('<SELECT name="menu" onChange="location.href=menu.options[menu.selectedIndex].value"></SELECT>');		with(document.MP.menu){			length = 13;			options[0].text = "閲覧方法";			options[1].text = "国税通則法関係";			options[2].text = "所得税法関係";			options[3].text = "法人税法関係";			options[4].text = "相続税法関係";			options[5].text = "消費税法関係";			options[6].text = "地価税法関係";			options[7].text = "登録免許税法関係";			options[8].text = "印紙税法関係";			options[9].text = "揮発油税法関係";			options[10].text = "自動車重量税法関係";			options[11].text = "国税徴収法関係";			options[12].text = "租税特別措置法関係";			options[0].value = "../index.html";			options[1].value = "../01/index.html";			options[2].value = "../02/index.html";			options[3].value = "../03/index.html";			options[4].value = "../04/index.html";			options[5].value = "../05/index.html";			options[6].value = "../06/index.html";			options[7].value = "../07/index.html";			options[8].value = "../08/index.html";			options[9].value = "../09/index.html";			options[10].value = "../10/index.html";			options[11].value = "../11/index.html";			options[12].value = "../12/index.html";			for(i=1; i<length; i++){options[i].selected = options[i].text == text}		}	}//==================================================