/*pop-upウインドウを開く(top用/カウンセリング予約・何でも相談)*/
function subwintop(inNo){
	if (inNo == 0) {
		wURL="http://www.shinbijin.jp/pg/ent_counsel.php";
	} else {
		wURL="http://www.shinbijin.jp/pg/ent_soudan.php";
	}
	var newWin=window.open(wURL,"subWin",'width=640,height=575,toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	newWin.focus();
}


/*▼▼▼▼▼リクルート用▼▼▼▼▼*/
/*pop-upウインドウを開く(リクルート用)*/
function subwinrecruit(inNo){
	if (inNo == 0) {
		wURL="http://www.shinbijin.jp/pg/ent_recruit.php";
	} else {
		wURL="http://www.shinbijin.jp/pg/ent_recruit.php";
	}
	var newWin=window.open(wURL,"subWin",'width=640,height=575,toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	newWin.focus();
}

/*pop-upウインドウを開く(女性用/リクルート用)*/
function subwinrecruitFemale(inNo){
	if (inNo == 0) {
		wURL="http://www.shinbijin.jp/pg/ent_recruit.php?accountid=female";
	} else {
		wURL="http://www.shinbijin.jp/pg/ent_recruit.php?accountid=female";
	}
	var newWin=window.open(wURL,"subWin",'width=640,height=575,toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	newWin.focus();
}

/*pop-upウインドウを開く(男性用/リクルート用)*/
function subwinrecruitMale(inNo){
	if (inNo == 0) {
		wURL="http://www.shinbijin.jp/pg/ent_recruit.php?accountid=male";
	} else {
		wURL="http://www.shinbijin.jp/pg/ent_recruit.php?accountid=male";
	}
	var newWin=window.open(wURL,"subWin",'width=640,height=575,toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	newWin.focus();
}
/*△△△△△リクルート用△△△△△*/

/*▼▼▼▼▼カウンセリング予約・何でも相談▼▼▼▼▼*/
/*pop-upウインドウを開く(カウンセリング予約・何でも相談)*/
function subwin(inNo){
	if (inNo == 0) {
		wURL="http://www.shinbijin.jp/pg/ent_counsel.php";
	} else {
		wURL="http://www.shinbijin.jp/pg/ent_soudan.php";
	}
	var newWin=window.open(wURL,"subWin",'width=640,height=575,toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	newWin.focus();
}

/*pop-upウインドウを開く(女性用/カウンセリング予約・何でも相談)*/
function subwinFemale(inNo){
	if (inNo == 0) {
		wURL="http://www.shinbijin.jp/pg/ent_counsel.php?accountid=female";
	} else {
		wURL="http://www.shinbijin.jp/pg/ent_soudan.php?accountid=female";
	}
	var newWin=window.open(wURL,"subWin",'width=640,height=575,toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	newWin.focus();
}

/*pop-upウインドウを開く(男性用/カウンセリング予約・何でも相談)*/
function subwinMale(inNo){
	if (inNo == 0) {
		wURL="http://www.shinbijin.jp/pg/ent_counsel.php?accountid=male";
	} else {
		wURL="http://www.shinbijin.jp/pg/ent_soudan.php?accountid=male";
	}
	var newWin=window.open(wURL,"subWin",'width=640,height=575,toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	newWin.focus();
}
/*△△△△△カウンセリング予約・何でも相談△△△△△*/



/*ページ内表示切り替え*/
	var	lastblk = "";

function BlkDisp(blk){
	if (blk == lastblk){
		if (document.getElementById(blk).style.display=="none"){
			document.getElementById(blk).style.display="block";
		}else{
			document.getElementById(blk).style.display="none";
			lastblk = "";
		}
	}
	else{
		document.getElementById(blk).style.display="block";
		if (lastblk != ""){
			document.getElementById(lastblk).style.display="none";
		}
		lastblk = blk;
	}
}



function blkhide(blk){
	if (document.getElementById(blk).style.display=="none"){
		document.getElementById(blk).style.display="block";
	}else{
		document.getElementById(blk).style.display="none";
	}
}



/*文字点滅*/
function fblink() {
  if (!document.all) { return; }
  for (i = 0; i < document.all.length; i++) {
    obj = document.all(i);
    if (obj.className == "fblink") {
      if (obj.style.visibility == "visible") {
        obj.style.visibility = "hidden";
      } else {
        obj.style.visibility = "visible";
      }
    }
  }
  setTimeout("fblink()", 800);
}

