function out_directmenu1() {

document.open("text/html");

document.write('<form>');
document.write('<select name="select" onChange="if ( this[this.selectedIndex].value != \'\' ) { location.href = this[this.selectedIndex].value }">'); 
document.write('<option selected>ƒ_ƒCƒŒƒNƒgƒCƒ“ƒfƒbƒNƒX</option>');
document.write('<option>PPPPPPPPPPPP</option>');

for ( i = 0; i < list_num; i++ ) {

  document.write('<option value="');
  document.write(menulist[i][0]);
  document.write('">');
  document.write(menulist[i][1]);
  document.write('</option>');
};

document.write('</select>');
document.write('</form>');

document.close();

}

