﻿function cleanup() {
	ColdFusion.Window.destroy('videoWindow',true);
}
function showWindow(flvName){
	try {
		ColdFusion.Window.destroy('videoWindow',true);
	} catch(e) { }
	var config = new Object();
	config.width = 520;
	config.height = 400;
	config.center = true;
	config.x = 0;
	config.y = 0;
	config.modal = false;
	config.closable = true;
	config.draggable = true;
	config.resizable = false;
	config.initshow = true;
	//config.buttonAlign = "center";
	ColdFusion.Window.create('videoWindow', '','/video.cfm?movieName=' + flvName,config);  
	ColdFusion.Window.onHide('videoWindow',cleanup);
	myWindow = ColdFusion.Window.getWindowObject('videoWindow');
	document.getElementById(myWindow.id).style.zIndex = "9999999";
}
