function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.legalntr.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    top.self.location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get" target="self">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Select Area of Law</option>' );
document.writeln( '<option value="/pro/1179/">Bankruptcy Law</option>' );
document.writeln( '<option value="pro/1182/">Criminal Law/DUI</option>' );
document.writeln( '<option value="/pro/1183/">Family Law</option>' );
document.writeln( '<option value="/pro/1193/">Wills & Trust Law</option>' );
document.writeln( '<option value="/pro/1204/">Employment Law</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

