//////////WinOpen

//スタッフは見た！
function WinOpenPhotoA(){ window.open('staffd/index.html','pop1','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=650,height=442').focus();}
function WinOpenPhotoB(){ window.open('../staffd/index.html','pop1','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=650,height=442').focus();}

//恋のコールセンター
function WinOpenCCA(){ window.open('callcenter/index.html','pop2','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=670,height=500').focus();}
function WinOpenCCB(){ window.open('../callcenter/index.html','pop2','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=670,height=500').focus();}

//コールセンターの人々
function WinOpenPEOPLEA(){ window.open('people/index.html','pop3','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=720,height=500').focus();}
function WinOpenPEOPLEB(){ window.open('../people/index.html','pop3','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=720,height=500').focus();}

//今週の都倉渉
function WinOpenWATARUA(){ window.open('wataru/index.html','pop4','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=720,height=500').focus();}
function WinOpenWATARUB(){ window.open('../wataru/index.html','pop4','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=720,height=500').focus();}

//コールセンター通信
function WinOpenMM(){ window.open('http://asahi.co.jp/fri21m/callcenter/','pop5','resizable=yes,scrollbars=yes,menubar=0,directories=0,status=0,location=0,width=620,height=750').focus();}

//////////jump

function jump(){
	var url = document.form1.select.options[document.form1.select.selectedIndex].value;
	if(url != "" ){
		if(target == 'top'){
		top.location.href = url;
		}
		else if(target == 'blank'){
		window.open(url, 'window_name');
		}
		else if(target != ""){
		eval('parent.' + target + '.location.href = url');
		}
		else{
		location.href = url;
		}
	}
}

//////////close_win

function close_win(){
  var nvua = navigator.userAgent;
    if(nvua.indexOf('MSIE') >= 0){
      if(nvua.indexOf('MSIE 5.0') == -1) {
        top.opener = '';
      }
    }
    else if(nvua.indexOf('Gecko') >= 0){
      top.name = 'CLOSE_WINDOW';
      wid = window.open('','CLOSE_WINDOW');
    }
    top.close();
}

//////////  selectBoxLink設定開始 
// （フレームの場合は、表示先のフレーム名を設定） 
// （topを指定すると、フレームの分割を廃止して画面全体で表示） 
// （blankを指定すると、新規ウィンドウで表示） 

var target = ""; 

// 設定終了
