// JavaScript Document
// Quick Navigation Alumninews - Alumni Reunions
function menu_goto( menuform )
{
  var baseurl = 'http://www.alumninews.ch/' ;
  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="NetCommunity/Page.aspx?pid=303">Choose an archive...</option>' );
document.writeln( '<option value="NetCommunity/Page.aspx?pid=486">Alumni Reunions - Archives 2010</option>' );
document.writeln( '<option value="NetCommunity/Page.aspx?pid=443">Alumni Reunions - Archives 2009</option>' );
document.writeln( '<option value="NetCommunity/Page.aspx?pid=437">Alumni Reunions - Archives 2008</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );