////////////////////////////////////////////////////
function pullMenu(jpMenu){
	sn=jpMenu.selectedIndex;
	jpURL=jpMenu.options[sn].value;
	if (jpURL != ""){
	top.location.href=jpURL;
	}
}

////////////////////////////////////////////////////
function windowOpen1(url){
	smallWin = window.open(url,'smallWin','width=489,height=560,scrollbars=yes,resizable=yes');
	smallWin.focus();
}

////////////////////////////////////////////////////
function windowOpen2(url){
	bigWin = window.open(url,'bigWin','width=706,height=580,scrollbars=yes,resizable=yes');
	bigWin.focus();
}


////////////////////////////////////////////////////
function lScript(){
checkDir=document.URL;
// 2004/01/26 faq͑ΏۊO ta)togawa
//if(checkDir.indexOf("/apply/")>=0 || checkDir.indexOf("/inquiry/")>=0 || checkDir.indexOf("/faq/")>=0 || checkDir.indexOf("/parent/pwchange/")>=0){
if(checkDir.indexOf("/apply/")>=0 || checkDir.indexOf("/inquiry/")>=0 || checkDir.indexOf("/parent/pwchange/")>=0){
	if(document.forms[0]){
		if(document.forms[0].elements[0].type != "submit"){
		document.forms[0].elements[0].focus();
		}
	}
}
}
window.onload = lScript;


////////////////////////////////////////////////////
function linkToParent(url) {
if ((navigator.userAgent.indexOf("Mac") > -1))
{
	if (window.opener) {
		window.opener.focus();
		window.opener.location.href = url; 
		//window.close();
	} else {
		window.open(url,'HOME','scrollbars=yes,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes');
	}
}else{
	if (window.opener){
	if (!window.opener.closed) {
		window.opener.focus();
		window.opener.location.href = url; 
		//window.close();
	} else {
		window.open(url,'HOME','scrollbars=yes,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes');
	}
	}else {
		window.open(url,'HOME','scrollbars=yes,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes');
	}
}
}


