function menu_goto( menuform )
{
  // http://www.thesitewizard.com/ 
  var baseurl = 'http://www.homeenvy.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" class="dropdownmenu1" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Columnist</option>' );
document.writeln( '<option value="mag_ruffman.html">Mag Ruffman</option>' );
document.writeln( '<option value="kimberley_seldon.html">Kimberley Seldon</option>' );
document.writeln( '<option value="red_green.html">Red Green</option>' );
document.writeln( '<option value="kathy_renwald.html">Kathy Renwald</option>' );
document.writeln( '<option value="steve_maxwell.html">Steve Maxwell</option>' );
document.writeln( '<option value="madeleine_langlois.html">Madeleine Langlois</option>' );
document.writeln( '<option value="frank_fourchalk.html">Frank Fourchalk</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

