function popVideo(videoTitle, flvPath)
{
	$("pop_video_title").innerHTML = videoTitle;
	$("pop_iframe").src = "popup.php?flvPath=" + flvPath;
	
	var myWindow = new NewWindow({
		id: "container_newwindow",
		closeButton: ["pop_video_close_button"],
		overlayColor: "#000000",
		overlayOpacity: .8
	});
	myWindow.onWindowClose = onWindowClose;
	myWindow.open();
}

function verifyFormSelection()
{
	var isValid = false;
	var chkArray = $("frmVideos")["videoEntries[]"];
	var chkCount = chkArray.length;
	for (var chkIndex = 0; chkIndex < chkCount; chkIndex++)
	{
		if (chkArray[chkIndex].checked)
		{
			isValid = true;
			break;
		}
	}
	
	if (isValid == false) alert("You must select at least one video.");
	
	return isValid;
}

function $(theID)
{
	return document.getElementById(theID);	
}

function onWindowClose()
{
	$("pop_iframe").src = "";
}
