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.ccbreathoflife.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" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="radio.asp">-- select from list --</option>' );
document.writeln( '<option value="/Daniel/index.asp">The book of Daniel</option>' );
document.writeln( '<option value="/Radio/Breathoflife09.asp">A Breath of Life 2009</option>' );
document.writeln( '<option value="/Radio/Jul06.asp">July 2006</option>' );
document.writeln( '<option value="/Radio/Dec06.asp">December 2006</option>' );
document.writeln( '<option value="/Radio/Mar07.asp">March 2007</option>' );
<!--document.writeln( '<option value="/1John/index.asp">January 2009</option>' );-->
document.writeln( '</select>' );
document.writeln( '</form>' );


