// JavaScript Document
var videoExtension = ".mov";

function openVideoPopup(videoFileName,videoTitle)
{
	var videoUrl = "/cbt/video_popup1.html?vid=" + videoPath + videoFileName + videoExtension + "&tt=" + videoTitle;
	window.open(videoUrl,videoFileName,'resize,toolbars,width=300,height=300');
}

function openVideoPopupMed(videoFileName,videoTitle)
{
	var videoUrl = "/cbt/video_popup2.html?vid=" + videoPath + videoFileName + videoExtension + "&tt=" + videoTitle;
	window.open(videoUrl,videoFileName,'resize,toolbars,width=350,height=350');
}

function openVideoPopupHigh(videoFileName,videoTitle)
{
	var videoUrl = "/cbt/video_popup3.html?vid=" + videoPath + videoFileName + videoExtension + "&tt=" + videoTitle;
	window.open(videoUrl,videoFileName,'resize,toolbars,width=650,height=550');
}