function goRecipe() {
	if (document.frmRecipe.selRecipe.options[document.frmRecipe.selRecipe.selectedIndex].value != "") {
		var URL = "source4women/healthy_recipes/" + document.frmRecipe.selRecipe.options[document.frmRecipe.selRecipe.selectedIndex].value + ".htm";
		location.href=URL;
		}
	}
