//  XHTML記述例 
//  javascript:WinOpen1(); 

function WinOpen1(){ window.open('ticket/index.html','popup','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}

function WinNews1(){ window.open('news/index.html','newspop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}

function WinNews01(){ window.open('news/01.html','newspop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}
function WinNews02(){ window.open('news/02.html','newspop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}
function WinNews03(){ window.open('news/03.html','newspop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}
function WinNews04(){ window.open('news/04.html','newspop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}
function WinNews05(){ window.open('news/05.html','newspop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}

function WinTicket1(){ window.open('ticket/index.html','ticpop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}

function WinTicket01(){ window.open('ticket/01.html','ticpop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}
function WinTicket02(){ window.open('ticket/02.html','ticpop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}
function WinTicket03(){ window.open('ticket/03.html','ticpop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}
function WinTicket04(){ window.open('ticket/04.html','ticpop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}
function WinTicket05(){ window.open('ticket/05.html','ticpop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}

function WinStory1(){ window.open('story/index.html','stopop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}

function WinMovie1(){ window.open('trailer/index.html','trapop','resizable=0,scrollbars=no,menubar=0,directories=0,status=0,location=0,width=560,height=600');}

function WinNetmovie1(){ window.open('netmovie/index.html','netpop','resizable=0,scrollbars=yes,menubar=0,directories=0,status=0,location=0,width=480,height=790');}


//  selectBoxLink設定開始 
// （フレームの場合は、表示先のフレーム名を設定） 
// （topを指定すると、フレームの分割を廃止して画面全体で表示） 
// （blankを指定すると、新規ウィンドウで表示） 

var target = ""; 

// 設定終了

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;
}
}
}
