// JavaScript Document
<!--
function swapOn(id,chara) {
	if(document.getElementById) {
		document.getElementById(id).src = "./img/dougu-cbtn_on.gif";
		document.images[id].src = "./img/dougu-cbtn_on.gif";
		chara2 = chara;
		id2 = id;
	}
}
function swapOff() {
	if(document.getElementById) {
		document.getElementById(id2).src = "./img/dougu-cbtn_off.gif";
		document.images[id2].src = "./img/dougu-cbtn_off.gif";
	}
}

function swapOn2(id,chara) {
	if(document.getElementById) {
		document.getElementById(id).src = "./img/dougu-tbtn_on.gif";
		document.images[id].src = "./img/dougu-tbtn_on.gif";
		chara2 = chara;
		id2 = id;
	}
}
function swapOff2() {
	if(document.getElementById) {
		document.getElementById(id2).src = "./img/dougu-tbtn_off.gif";
		document.images[id2].src = "./img/dougu-tbtn_off.gif";
	}
}

function WinOpen(){
	window.open('./dougu_w/1.html','1','resizable=no,scrollbars=no,width=1000,height=470');
}

-->
