// JavaScript Document

// JavaScript Document

function playLightBoxVideo(targetDiv, fileToShow){
	var targetSpan=targetDiv+"Inner";
	alert("playLightBoxVid targetDiv:"+targetDiv+", videoPath:"+targetSpan+" fileToShow:"+fileToShow);
	document.getElementById(targetSpan).innerHTML=fileToShow;
	document.getElementById('lightBox').style.left="0px";
	document.getElementById(targetDiv).style.left="0px";

}

function closeLightBox(targetDiv){
	//alert("closeLightBox targetDiv:"+targetDiv);
	var targetSpan=targetDiv+"Inner";
	document.getElementById('lightBox').style.left="-200%";
	document.getElementById(targetSpan).innerHTML=" ";
}

function clearOut(){
	document.getElementById("lightBox").innerHTML="clear!";
}
