if(navigator.appVersion.charAt(0) <= 3) { //NN4,IE4以外のブラウザでのエラー回避
  event = new Object;
}

function opcl(f,h,fol) {
	if (fol.style.display =='') {
		fol.style.display = 'none';
		h.className = 'out';
		f.className = 'FolderClose';

	}
	else {
		fol.style.display='';
		h.className = 'in';
		f.className = 'FolderOpen';

		}
}

