
function ToggleDisplay(oItems){
	if((oItems.style.display=="")||(oItems.style.display=="none")){
		//表示を有効にする
		oItems.style.display="block";
	}else{
		//表示を無効にする
		oItems.style.display="none";
	}
}
