function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.alys.fi/' ;
  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" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="index.html">-- valitse vuosi alta</option>' );
document.writeln( '<option value="matkaapurahat2007.xls">2007</option>' );
document.writeln( '<option value="matkaapur2006.xls">2006</option>' );
document.writeln( '<option value="matkaapurahat2005.xls">2005</option>' );
document.writeln( '<option value="mar2001.htm">2001</option>' );
document.writeln( '<option value="mat99.htm">1999</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

