function menu_goto( menuform )
{

  var baseurl = '' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<p><form action="chgoto" style="padding-top:5px;padding-bottom:5px;text-align:center;" method="get">' );
document.writeln( '<select name="url" class="selectbox" onChange="menu_goto(this.form)">' );
document.writeln( '<option value="">E.B. Howlin, Inc. Websites</option>' );
document.writeln( '<option value="http://www.ebhowlin.com/index.php">E.B. Howlin, Inc.</option>' );
document.writeln( '<option value="http://www.dunkirksupply.com/index.php">Dunkirk Supply</option>' );
document.writeln( '<option value="http://www.howlinconcrete.com/index.php">Howlin Concrete</option>' );
document.writeln( '<option value="http://www.ebhowlin.com/c/78/howlin-realty">Howlin Realty Management</option>' );
document.writeln( '</select>' );
document.writeln( '</form></p>' );

