<!-- Begin
function selectaplace(form) {
var appname= navigator.appName;
var appversion=parseInt(navigator.appVersion);
if (appname == "Netscape" && appversion >= 3) {
var formindex=form.select1.selectedIndex;
var storage=form.select1.options[formindex].text;
if (form.select1.options[formindex].value != "none") {
var msg=storage+"You are now being transferred to the -> "+storage;
for (var spot=0;spot<msg.length-storage.length;spot++) {
var x=msg.substring(spot,msg.length);
form.select1.options[formindex].text=x;
for(var d=0;d<150;d++) { };
}
window.location=form.select1.options[formindex].value;
form.select1[formindex].text=storage;
} else  {
form.select1[formindex].text="Not a real option!";
for(var d=0;d<1250;d++) { };
form.select1[formindex].text=storage;
   }
}
else {
var formindex=form.select1.selectedIndex;
window.location=form.select1.options[formindex].value;
   }
}
function makeMyMenu() {
document.write ('<P>');
document.write ('<FONT COLOR="#636451" FACE="ARIAL">');
document.write ('<form><select name="select1" onChange="selectaplace(this.form)" size=1>');
document.write ('<option value=#>Jump Menu');
document.write ('<option value=1010.html>Industry Leadership');
document.write ('<option value=1020.html>Organizational Structure');
document.write ('<option value=20.html>ANSI/BHMA Standards');
document.write ('<option value=chart.html>ANSI/BHMA Develoment Chart');
document.write ('<option value=2020.html>BHMA Product Numbering');
document.write ('<option value=2010.html>Numbering System');
document.write ('<option value=2030.html>Grade Levels');
document.write ('<option value=30.html>Product Certification');
document.write ('<option value=30.html#productcategories>Product Categories');
document.write ('<option value=40.html>FAQs');
document.write ('<option value=newsline.shtml>News');
document.write ('<option value=60.html>BHMA Links');
document.write ('<option value=6010.html>BHMA Members');
document.write ('<option value=6020.html>Professional Groups');
document.write ('<option value=6030.html>Trade Groups');
document.write ('<option value=6040.html>Codes and Standards');
document.write ('<option value=member/members_homepage.html>Members Only!');
document.write ('<option value=80.html>Questions?');
document.write ('<option value=http://www.techstreet.com/bhmagate.html>Order Standards');
document.write ('<option value=order_01.html>Order Matchplates');
document.write ('<option value=order_02.html>Product Directory');
document.write ('<option value=index.html>HOME');
document.write ('</select>');
document.write ('</form>');
document.write ('</FONT>');
}
makeMyMenu();

// End -->
