// JavaScript Document

var fload = 0;
document.writeln('Select the Centrifuge Model : ');
document.writeln('<select name="cent" style="width:160px;" onChange="get_options();this.form.radius.value=0;" size="1">');
tot = centrifuge_option.length;
for (i = 0; i < tot; i++) document.writeln("<option>" +centrifuge_option[i]+ "</option>");
document.writeln("</select><br /><br />");
document.writeln('<select name="rotors" style="width:360px;" onChange="this.form.radius.value=my_radius[this.selectedIndex];" size="4" width="200">');
document.writeln("<option> ---- Please select the rotor type from the list. ---- </option>");
for (i = 0; i < rotors_option.length; i++) document.writeln("<option>" +rotors_option[i] + "</option>");
document.writeln("</select>");
get_options();