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="products" method="get">');
document.writeln( '<select name="url" onchange="menu_goto(this.form)" style="font-size: 9pt">');
document.writeln( '<option value="" selected>----------------- Select a Product -----------------</option>');
document.writeln( '<option value="pciexpress.htm">PCI Express (Gen3/ Gen2/ Gen1) nVS</option>');
document.writeln( '<option value="sriov.htm">SR-IOV nVS</option>');
document.writeln( '<option value="pci-x.htm">PCI-X nVS</option>');
document.writeln( '<option value="pci.htm">PCI nVS</option>');
document.writeln( '<option value="ambaaxi.htm">AMBA AXI nVS</option>');
document.writeln( '<option value="ambaahb.htm">AMBA AHB nVS</option>');
document.writeln( '<option value="ambaapb.htm">AMBA APB nVS</option>');
document.writeln( '<option value="ethernet.htm">Ethernet nVS</option>');
document.writeln( '<option value="spi.htm">SPI 4.2 nVS</option>');
document.writeln( '<option value="usb3.htm">USB 3.0 nVS</option>');
document.writeln( '<option value="usb.htm">USB nVS</option>');
document.writeln( '<option value="sas.htm">SAS nVS</option>');
document.writeln( '<option value="sata.htm">SATA nVS</option>');
document.writeln( '<option value="atapi.htm">ATAPI nVS</option>' );
document.writeln( '<option value="ddr3.htm">DDR3 nVS</option>');
document.writeln( '<option value="ddr2.htm">DDR2 nVS</option>');
document.writeln( '<option value="i2c.htm">I2C nVS</option>');
document.writeln( '<option value="uart.htm">UART nVS</option>');
document.writeln( '<option value="sdio.htm">SDIO nVS</option>');
document.writeln( '<option value="smbus.htm">SMBus nVS</option>');
document.writeln( '<option value="pcmcia.htm">PCMCIA nVS</option>');
document.writeln( '<option value="ieee1284.htm">IEEE 1284 nVS</option>');
document.writeln( '<option value="asnvs.htm">ASI nVS</option>');
document.writeln( '</select>');
document.writeln( '</form>');