<!-- 
function letsgo() {
	var selection = document.yo.combo.selectedIndex;
	var newloc = null;
	if (selection == 0) newloc = null;
 else if (selection == 2) newloc = 'acne.htm';
	else if (selection == 3) newloc = 'coliques.htm';
	else if (selection == 4) newloc = 'conjoncti.htm';
	else if (selection == 5) newloc = 'constip.htm';
	else if (selection == 6) newloc = 'croutlai.htm';
	else if (selection == 7) newloc = 'diarrhee.htm';
	else if (selection == 8) newloc = 'erytheme.htm';
	else if (selection == 9) newloc = 'fievre.htm';
	else if (selection == 10) newloc = 'hoquet.htm ';
	else if (selection == 11) newloc = 'jaunisse.htm';
	else if (selection == 12) newloc = 'muguet.htm';
	else if (selection == 13) newloc = 'otite.htm';
	else if (selection == 14) newloc = 'regurgit.htm';
	else if (selection == 15) newloc = 'rhumes.htm';
	else if (selection == 16) newloc = 'roseole.htm';
	else if (selection == 17) newloc = 'rot.htm';
	else if (selection == 18) newloc = 'vomiss.htm';
	if (newloc) setTimeout("parent.location = \'" + newloc + "\'", 0);
	}
// -->