/* [www.ch-ginga.jp]
 * Scripts for "Andy Williams SHOW"
 * Modified: 2010-05-19 17:35:35.
 */
function MM_jumpMenu(targ,selObj,restore){ //v3.0
	var url = selObj.options[selObj.selectedIndex].value;
	if(url.indexOf("各エピソードの詳細") != -1) { return; }
	eval(targ + ".location='"+ url +"'");
	if (restore) { selObj.selectedIndex=0; }
}

function linkArchives() {
var fixedTitle = "シーズン1 アンディ・ウィリアムス ショー ";
var archives = [
	{url: "andy_01.html", label: fixedTitle + "#1"},
	{url :"andy_02.html", label: fixedTitle + "#2"},
	{url: "andy_03.html", label: fixedTitle + "#3"},
	{url: "andy_04.html", label: fixedTitle + "#4"},
	{url: "andy_05.html", label: fixedTitle + "#5"},
	{url: "andy_06.html", label: fixedTitle + "#6"},
	{url: "andy_07.html", label: fixedTitle + "#7"},
	{url: "andy_08.html", label: fixedTitle + "#8"},
	{url: "andy_09.html", label: fixedTitle + "#9"},
	{url: "andy_10.html", label: fixedTitle + "#10"},
	{url: "andy_11.html", label: fixedTitle + "#11"},
	{url: "andy_12.html", label: fixedTitle + "#12"},
	{url: "andy_13.html", label: fixedTitle + "#13"},
	{url: "andy_14.html", label: fixedTitle + "#14"},
	{url: "andy_15.html", label: fixedTitle + "#15"},
	{url: "andy_16.html", label: fixedTitle + "#16"},
	{url: "andy_17.html", label: fixedTitle + "#17"},
	{url: "andy_18.html", label: fixedTitle + "#18"},
	{url: "andy_19.html", label: fixedTitle + "#19"}
]

var s = '<form name="link_archives" id="link_archives">';
s += '<div class="section">';
s += '<h2 style="width: 0; height: 0; overflow: hidden;">';
s += "これまでに放送されたエピソード";
s += '</h2>';
s += '<p><select name="archives" onchange="MM_jumpMenu(\'parent\',this,0)">';
s += '<option selected="selected">シーズン1 各エピソードの詳細</option>';
for (var i=0, l=archives.length; i<l; i++) {
	s += '<option value="';
	s += archives[i].url;
	s += '">';
	s += archives[i].label;
	s += '</option>';
}
s += '</select></p>';
s += '</div>';
s += '</form>';

document.write(s);
}

function linkArchives2() {
var fixedTitle = "シーズン2 アンディ・ウィリアムス ショー ";
var archives = [
	{url: "andy2_01.html", label: fixedTitle + "#1～#5"},
	{url: "andy2_02.html", label: fixedTitle + "#6～#10"},
	{url: "andy2_03.html", label: fixedTitle + "#11～#15"},
	{url: "andy2_04.html", label: fixedTitle + "#16～#20"}
]

var s = '<form name="link_archives2" id="link_archives2">';
s += '<div class="section">';
s += '<h2 style="width: 0; height: 0; overflow: hidden;">';
s += "これまでに放送されたエピソード";
s += '</h2>';
s += '<p><select name="archives2" onchange="MM_jumpMenu(\'parent\',this,0)">';
s += '<option selected="selected">シーズン2 各エピソードの詳細</option>';
for (var i=0, l=archives.length; i<l; i++) {
	s += '<option value="';
	s += archives[i].url;
	s += '">';
	s += archives[i].label;
	s += '</option>';
}
s += '</select></p>';
s += '</div>';
s += '</form>';

document.write(s);
}

