// functions for video

function launchVideo(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');
}

// functions for slideshows

function launchSS(formY) {
	var num = eval("document." + formY + ".menudone.selectedIndex");
	var infostring = eval("document." + formY + ".menudone.options[num].value");
	if (infostring == "blank") {
		alert("Choose a slideshow first from the pulldown menu, then click the link to view!") ;
		return;
	}
	this.window.location.href = infostring;
}

// functions for downloads

function launchPosterArt(formZ) {
	var num = eval("document." + formZ + ".menudo.selectedIndex");
	var infostring = eval("document." + formZ + ".menudo.options[num].value");
	if (infostring == "blank") {
		alert("Choose a poster first from the pulldown menu, then click Download to view!") ;
		return;
	}
	var posterWin = window.open(infostring,'poster','width=650,height=550,status=yes,scrollbars=yes');
}
