
/* 親ウィンドウにリンク */
function openerGO(WO) {
window.opener.location.href=WO;
window.focus();
}


/* 親ウィンドウにリンク→子ウィンドウclose */
function openerGO2(WO) {
window.opener.location.href=WO;
window.close();
}


/* ヘルプ（各ページ） */
function openHelp(PAGE)
{
	leftPos = 0;
	if(screen)
	{
		leftPos = screen.width-590
	}
	window.open(PAGE,'popwin_help','status=no,toolbar=yes,resizable=yes,scrollbars=yes,height=480,width=580,left='+leftPos+',top=0');

}


/* 本注（各ページ） */
function openHontyu(PAGE)
{
	leftPos = 0;
	if(screen)
	{
		leftPos = screen.width-560
	}
	window.open(PAGE,'popwin_hontyu','status=no,toolbar=yes,resizable=no,scrollbars=yes,height=500,width=550,left='+leftPos+',top=0');

}


/*mouseover td背景色が変化*/

ie=document.all;
n6=document.getElementById;
function myBgcol(setId,setCol){
if(ie){
document.all[setId].style.backgroundColor=setCol;
}
if(n6){
document.getElementById(setId).style.backgroundColor=setCol;
}
}
