// function for handling the episode guide dropdown

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

// functions for video

function seriesVideo(formX) {
	var num = eval("document." + formX + ".menudo.selectedIndex");
	var infostring = eval("document." + formX + ".menudo.options[num].value");
	if (infostring == "blank") {
		alert("Choose a clip first from the pulldown menu, then click your player to view!") ;
		return;
	}
	var vplayWin = window.open('/scripts/video/vidplayer.html?movie=' + infostring,'vplay','width=700,height=515,status=yes');
}