function menu_goto( menuform )
{
  var baseurl = 'http://www.lacrossefurniture.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    top.location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get" target="_top">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="#">Distributors...</option>' );
document.writeln( '<option value="private/index.html">Marketing Login</option>' );
document.writeln( '<option value="private/dealer/index.html">Dealer Login</option>' );
document.writeln( '<option value="private/pfd/index.html">PFD Login</option>' );
document.writeln( '<option value="private/wc/index.html">West Coast Login</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
