function launchPodcasts(formY) {
	var num = eval("document." + formY + ".menudo.selectedIndex");
	var infostring = eval("document." + formY + ".menudo.options[num].value");
	if (infostring == "blank") {
		alert("Choose a podcast first from the pulldown menu, then click the link to view!") ;
		return;
	}
	this.window.location.href = infostring;
}