<!--
function showDetail(ses_no){
	settings='top=1,left=1,width=600,height=300,scrollbars=yes,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './detail/detail_'+ses_no+'.html', detail, settings );
	pop_showDetail.focus();
}

function showDetailA(ses_no){
	settings='top=1,left=1,width=600,height=300,scrollbars=yes,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './detail/detail_a'+ses_no+'.html', detail, settings );
	pop_showDetail.focus();
}

function showDetailB(ses_no){
	settings='top=1,left=1,width=600,height=300,scrollbars=yes,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './detail/detail_b'+ses_no+'.html', detail, settings );
	pop_showDetail.focus();
}

function showDetailC(ses_no){
	settings='top=1,left=1,width=600,height=300,scrollbars=yes,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './detail/detail_c'+ses_no+'.html', detail, settings );
	pop_showDetail.focus();
}

function showDetailD(ses_no){
	settings='top=1,left=1,width=600,height=300,scrollbars=yes,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './detail/detail_d'+ses_no+'.html', detail, settings );
	pop_showDetail.focus();
}

function showDetailLS(){
	settings='top=1,left=1,width=600,height=300,scrollbars=yes,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './detail/detail_ls.html', detail, settings );
	pop_showDetail.focus();
}

function showExh(id){
	settings='top=1,left=1,width=600,height=300,scrollbars=yes,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './detail/exh_detail_'+id+'.html', detail, settings );
	pop_showDetail.focus();
}
// -->

<!--
function ajustWindow() {
	var element = document.getElementById("BODY");

	if (document.all && !window.opera) {
		var height = document.documentElement.scrollHeight + 40;  // IE
	} else {
		var height = document.documentElement.offsetHeight + 86;  // Mozilla, Opera, Safari
	}

//	height = element.scrollHeight + 90;
	resizeTo(600,height);
}
//-->

<!--
// sub window control
var popWindow=null;
function pop(mypage,myname,w,h,t,l,s,r,m,lc,tl){
settings='width='+ w + ',height='+ h + ',top='+ t + ',left='+ l + ',scrollbars=' + s + ',resizable=' + r + ',menubar=' + m + ',location='+ lc + ',toolbar='+ tl + ',directories=no,status=yes,dependent=yes';
popWindow=window.open('',myname,settings);
popWindow.focus();popWindow.location=mypage;
}
// -->

<!-- // Swap Image function
// -- navigation rollover
imgBuffer = ""; // image buffer
pathBuffer = ""; // path buffer

var imgPath = "./images/navi/";
var extOn = "_on.gif";
var extOff = "_off.gif";

function naviOn(num, lay){
	if(imgBuffer!="") {
		naviOff();
	}

	if(lay == 1) {
		hideLayer();
	}

	naviName = "navi_0" + num;

	img = imgPath + naviName + extOn;
	document.images[naviName].src = img;

	imgBuffer = num;
}

function naviOff(){
	naviName = "navi_0" + imgBuffer;
	img = imgPath + naviName + extOff;
	document.images[naviName].src = img;
}

// -->


