//--------------------------------------
//	ポップアップウィンドウ
//	2006/08/01
//--------------------------------------


<!--


//====================================
//	親ウィンドウの制御
//====================================

function loadOpener(URL){
if (opener && !opener.closed){
	opener.location=URL;
	opener.focus();
}
else{
	window.open(URL,"newWin","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
	}
}



function doPopup() {

if (!document.getElementsByTagName) return false;

var links = document.getElementsByTagName("a");

for (var i=0; i < links.length; i++) {

if (links[i].className.match("popup")) {

links[i].onclick = function() {

window.open(this.href);

return false;

}

}

}

}

window.onload = doPopup;

//-->