function menu_goto( menuform )
{
  var baseurl = 'http://www.nsysinc.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="services" method="get">');
document.writeln( '<select name="url" onchange="menu_goto(this.form)" style="font-size: 9pt">');
document.writeln( '<option value="" selected>----------------- Select a Service -----------------</option>');
document.writeln( '<option value="asicservices.htm">ASIC/FPGA Design Services</option>');
document.writeln( '<option value="independent.htm">Independent Verification Services</option>');
document.writeln( '<option value="systemverilog.htm">SystemVerilog Migration Service</option>');
document.writeln( '</select>');
document.writeln( '</form>');