function showFLVMovie(currFLV){
	var isSelection = currFLV;
	var cvId = "closevid";
	var FO = { movie:"flvplayer.swf",width:"454",height:"360",majorversion:"7",build:"0",allowfullscreen:"false",
		flashvars:"file=media/"+isSelection+"&displayheight=340&autostart=true" };
	setDisplay("bb_main", "block");
	UFO.create(	FO, "bb_main");
	setDisplay(cvId, "block");
	
}

function showBillboard(){
	var FO = {	movie:"media/billboard.swf",width:"540",height:"360",majorversion:"7",build:"0",allowfullscreen:"false" };
	var cvId = "closevid";
	UFO.create(	FO, "bb_main");
	setDisplay(cvId, "none");
	
}

function hideMovie() {
  setDisplay("closevid", "none");
  setDisplay("bb_main", "none");
}

// function showCloseButton() {
// 	var bbArea = document.getElementById('billboard');
// 	var cbDiv = document.createElement('div');
// 	var cbAtag = document.createElement('a');
// 	var cbText = document.createTextNode('close video');
// 	var cv = "closevid";
// 	cbDiv.setAttribute('id','closevid');
// 	cbAtag.setAttribute('href','#');
// 	cbAtag.setAttribute('onclick','showBillboard(); return false;');
// 	
// 	cbAtag.appendChild(cbText);
// 	cbDiv.appendChild(cbAtag);
// 	setDisplay(cv, "block");
// 	bbArea.appendChild(cbDiv);
// 	var closeButton = document.createTextNode('<div id="closevid"><a href="#" onclick="showBillboard(); return false;">close video</a></div>');
// 
// }
