<!--
	// マウスオーバー時の画像に変換
	function onImage(imgName, picName, val) {
		document.images[imgName].src = GetPath(val) + "pic/" + picName;
	}

	// マウスアウト時の画像に変換
	function offImage(imgName, picName, val) {
		document.images[imgName].src = GetPath(val) + "pic/" + picName;
	}

	// パスの取得
	function GetPath(val) {
		path = "";
		if (val == 0) { return "./"; }
		for (i = 0; i < val; i++) {
			path = path + "../";
		}
		return path;
	}

	// 確認ダイアログ表示
	function CONFIRM_CHECK(val) {
		res = confirm(val);
		if (res == true) { return true; }
		else { return false; }
	}

	// コメントを折りたたむ
	function showPlagin(idno){
		pc = ('PlagClose' + (idno));
		po = ('PlagOpen' + (idno));
		if( document.getElementById(pc).style.display == "none" ) {
			document.getElementById(pc).style.display = "block";
			document.getElementById(po).style.display = "none";
		}
		else {
			document.getElementById(pc).style.display = "none";
			document.getElementById(po).style.display = "block";
		}
	}

//-->

