<!-- 
function letsgo() {
	var selection = document.yo.combo.selectedIndex;
	var newloc = null;
	if (selection == 0) newloc = null;
 else if (selection == 2) newloc = 'bib01.htm';
	else if (selection == 3) newloc = 'bib02.htm';
	else if (selection == 4) newloc = 'bib03.htm';
	else if (selection == 5) newloc = 'bib04.htm';
	else if (selection == 6) newloc = 'bib05.htm';
	else if (selection == 7) newloc = 'bib06.htm';
	else if (selection == 8) newloc = 'bib07.htm';
	else if (selection == 9) newloc = 'bib08.htm';
	if (newloc) setTimeout("parent.location = \'" + newloc + "\'", 0);
	}
// -->
