function menu_goto( menuform )
{
    var baseurl = 'http://poppychop.net/sac/labels/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    top.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="#">choose destination</option>' );
document.writeln( '<option value="commentary.html">commentary</option>' );
document.writeln( '<option value="computer%20science.html">computer science</option>' );
document.writeln( '<option value="libertarianism.html">libertarianism</option>' );
document.writeln( '<option value="marketing.html">marketing</option>' );
document.writeln( '<option value="memetics.html">memetics</option>' );
document.writeln( '<option value="meta-blogging.html">meta-blogging</option>' );
document.writeln( '<option value="philosophy.html">philosophy</option>' );
document.writeln( '<option value="politics.html">politics</option>' );
document.writeln( '<option value="promo.html">promo</option>' );
document.writeln( '<option value="satire.html">satire</option>' );
document.writeln( '<option value="statism.html">statism</option>' );
document.writeln( '<option value="voluntaryism.html">voluntaryism</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

//<![CDATA[

//]]>