﻿
function tokunControl() {
	var fla = $("tokunPanel");
	var btn = $("tokunOpen");
	var ret = Element.getStyle(fla,"top");
	if (ret == "-1000px") {
// パネル表示
		fla.style.top = "50px";

// 画像の置き換え
		if (btn.hasChildNodes()) { 
			var child = btn.firstChild;
			child.setAttribute("src", "img/index/top_panal_close.gif"); 
			child.setAttribute("alt", "操作パネルを閉じる");
		}
	} else {
// パネル非表示
		fla.style.top = "-1000px";

// 画像の置き換え
		if (btn.hasChildNodes()) { 
			var child = btn.firstChild;
			child.setAttribute("src", "img/index/top_panal_open.gif"); 
			child.setAttribute("alt", "操作パネルを開く");
		}
	}

 }
