jpURL = new Array(
"リンク指定無し!",
"http://pori2.net/",
"http://pori2.net/js/index.html",
"http://pori2.net/saku2/index.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>HOME</option>');
  document.write('<option>JavaScript入門</option>');
  document.write('<option>さくさくHP作り</option>');
  document.write('</select></form>');
}