function popJump(sObj)
{
	c = sObj.selectedIndex;
	url = sObj.options[c].value;
	if(url) window.open(url,"Dictionary","resizable,scrollbars,height=500,width=600");
}

function popJumpHere(sObj)
{
	c = sObj.selectedIndex;
	url = sObj.options[c].value;
	if (url) location.href = url;
}
function mini(URL,WIDTH,HEIGHT){
  subwindow=window.open(URL,'','scrollbars=1,resizable=1,toolbar=0,location=0,status=0,width=' + WIDTH + ',height=' + HEIGHT + ',left=0,top=0');
  subwindow.opener=self;
  subwindow.document.close();
}


function Link(addr,word) {
        if (confirm(word + "\n大丈夫ですか？")){
                location.href=addr;} 
}

function remote(URL)
{
	window.opener.location.href = URL;
	window.opener.focus()
}
function remote_and_close(URL)
{
	window.opener.location.href = URL;
	window.close();
}