<!--
function showDetail(ses_no){
	settings='top=1,left=1,width=500,height=300,scrollbars=no,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './detail_'+ses_no+'.html', detail, settings );
	pop_showDetail.focus();
}

function showExh(id){
	settings='top=1,left=1,width=500,height=300,scrollbars=no,resizable=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,dependent=no';
	detail = "detail";
	pop_showDetail=window.open( './exh_detail_'+id+'.html', detail, settings );
	pop_showDetail.focus();
}
// -->

<!--
function ajustWindow() {
	var element = document.getElementById("BODY");
	height = element.scrollHeight + 49;
	resizeTo(500,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;
}

// -->

