jpURL = new Array(
"リンク指定無し！",
"bn.html",
"bn_2010_08.html",
"bn_2010_07.html",
"bn_2010_06.html",
"bn_2010_05.html",
"bn_2010_04.html",
"bn_2010_03.html",
"bn_2010_02.html",
"bn_2010_01.html",
"bn_2009_12.html",
"bn_2009_11.html",
"bn_2009_10.html",
"bn_2009_09.html",
"bn_2009_08.html",
"bn_2009_07.html",
"bn_2009_06.html",
"bn_2009_05.html",
"bn_2009_04.html"
);

function SelectNavi(){
  var num;
  num=document.navi.contents.selectedIndex;

  if(num != 0) location.href=jpURL[num];
}

function FormWrite(){
  document.write('<form name="navi">');
  document.write('<select name="contents" onchange="SelectNavi()">');
  document.write('<option>　放 送 日 で 探 す　</option>');
  document.write('<option>2010年9月</option>');
  document.write('<option>2010年8月</option>');
  document.write('<option>2010年7月</option>');
  document.write('<option>2010年6月</option>');
  document.write('<option>2010年5月</option>');
  document.write('<option>2010年4月</option>');
  document.write('<option>2010年3月</option>');
  document.write('<option>2010年2月</option>');
  document.write('<option>2010年1月</option>');
  document.write('<option>2009年12月</option>');
  document.write('<option>2009年11月</option>');
  document.write('<option>2009年10月</option>');
  document.write('<option>2009年9月</option>');
  document.write('<option>2009年8月</option>');
  document.write('<option>2009年7月</option>');
  document.write('<option>2009年6月</option>');
  document.write('<option>2009年5月</option>');
  document.write('<option>2009年4月</option>');
  document.write('</select></form>');
}