/**
 * steel_pop_menu : created '02.10.28 
 */

// notice! If you change the order of '<form>-tag' and '<td>-tag' , space area will be appeared after FORM. 
//
// Create FORM
document.write('<tr>'); 
document.write('<FORM NAME = "m">');
document.write('<td>'); 
document.write('<div align=center>');  

// Menu initialize
document.write('<SELECT style="font-family:sans-serif" NAME = "m1" onChange = "LinkSelect(this.selectedIndex)">');
for (var i = 0; i < selTB.length; i++){
//	document.m.m1.options[i] = new Option(optTB[i]);
	document.write('<OPTION>' + optTB[i] + '</OPTION>');
	}
document.write('</SELECT>');

// Create JUMP button
document.write('  ');
document.write('<INPUT type = "button" name = "bt1" value = "GO!" onClick = "btnClick()" style="font-family:sans-serif">');

document.write('</div>'); 
document.write('</td>'); 
document.write('</FORM>');
document.write('</tr>'); 
