function showpopup(){
 popup_holder = document.getElementById('popup-holder');
 popup_holder.style.display = "";
 overlay_div = document.getElementById('overlay');
 overlay_div.style.display = "";
}

function hidepopup(){
	//var myVideoPlayer = document.getElementById("commanderflash");	
	//myVideoPlayer.sendEvent('stop');
	//var myVideoPlayer = thisMovie("commanderflash");	
	//myVideoPlayer.sendEvent('stop')	
	//changemovie();
	$("#moviecontainer").html("");
	popup_holder = document.getElementById('popup-holder');
 	popup_holder.style.display = "none";
 	overlay_div = document.getElementById('overlay');
 	overlay_div.style.display = "none";
} 

var so;
function CreateViewer(W,H,MovieURL)
{
document.getElementById("moviecontainer").style.width=600 + "px"
document.getElementById("moviecontainer").style.height=475 + "px"
so = new SWFObject('commander.swf','jstest',600,475,'8');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addVariable('width',600);
so.addVariable('height',475);
so.addVariable('file',MovieURL);
so.addVariable('javascriptid','jstest');
so.addVariable('enablejs','true');
so.addVariable('showstop','true');
so.addVariable('autostart','true');
so.write('moviecontainer');
}

function changemovie()
{
so.sendEvent('stop');
}