<!-- // Target window control (blank)
function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
}
window.onload=externalLinks;
// -->

<!-- // 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;
}
// -->

<!--
function ajustWindowAuto(width) {
	var element = document.getElementById("POPUP");
	if(navigator.appName=="Microsoft Internet Explorer") {
		height = element.scrollHeight + 179;
	} else if(navigator.appName=="Opera") {
		height = element.scrollHeight + 49;
	} else {
		height = element.scrollHeight + 79;
	}
	resizeTo(width,height);
}
//-->





<!--
// レイヤー表示切替
crrtDetail = "LAY01"; //バッファ

//レイヤー表示
function showDetail(layName){
	//バッファされているレイヤーを消去
	hideDetail();

	document.getElementById(layName).style.display = "block";
	crrtDetail = layName; //表示中のレイヤーをバッファに入れる
}

//レイヤー消去
function hideDetail() {
	document.getElementById(crrtDetail).style.display = "none";
}
//-->

