﻿// JavaScript Document
var cols = 2;
var rows = 122;
var amount = cols * rows;

function MakeList () {
	document.write ( "<select name=\"menu1\" id=\"lanBlock\">" );
	document.write ( "<option selected value=\"#\">型名をお選び下さい</option>" );
	for ( i=0 ; i<amount ; i+=cols ) {
		document.write ( "<option value=" +
						 promenu [i] + ">");
		document.write ( promenu [i+1] + "</option>" );
		}
	document.write ( "</select>" );
}

MakeList () ;


