function menu_goto( menuform )
{
  var baseurl = 'http://www.globeinvestor.com' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="ifs-switch" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Select a commodity group</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/Currencies.html">Currencies</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/Energy.html">Energy</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/Forex.html">Forex</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/Grains.html">Grains</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/Indices.html">Indices</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/IRates.html">Interest Rates</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/Meats.html">Meats (Livestock)</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/Metals.html">Metals</option>' );
document.writeln( '<option value="/v5/content/commodities/groups/Softs.html">Softs</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

