<!-- 
/**************************************************************** 
* 機　能： オブジェクトの表示非表示を制御する 3 
*        （表示/非表示のオブジェクトを切り替える） 
* 引　数： strShow 表示するオブジェクト名 
*          strHidden 非表示にするオブジェクト名 
* 戻り値： なし 
****************************************************************/ 
function ChDsp2(strShow,strHidden){ 

	var obj=''; 
	obj=document.all && document.all(strShow) || document.getElementById && document.getElementById(strShow); 
	if (obj != null ) obj.style.display = "block"; 
	obj=document.all && document.all(strHidden) || document.getElementById && document.getElementById(strHidden); 
	if (obj != null ) obj.style.display = "none";

	document.getElementById('menu_type').value = strShow;
} 
//--> 

