function GetMovieStr(video, width, height){
Str='<div id="videobox"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="FLVPlayer"><param name="movie" value="FLVPlayer_Progressive.swf" /><param name="salign" value="lt" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Corona_Skin_3&streamName=videos/'+video+'&amp;autoPlay=true&autidthoRewind=false" /><embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Corona_Skin_3&streamName=videos/'+video+'&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="640" height="480" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" /></object></div><div id="close"><a href="#" onclick="CloseVideo()">Close window</a></div>';

return Str;
}




function CloseVideo(){
document.getElementById("fullvideo").innerHTML='';
document.getElementById("fullvideo").style.display="none";
}

function ShowVideo(video, width, height){
/*AC_FL_RunContent( "codebase","http//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0","width","600","height","450","id","FLVPlayer","src","FLVPlayer_Progressive","flashvars","&MM_ComponentVersion=1&skinName=Corona_Skin_3&streamName="+video+"&autoPlay=true&autoRewind=false","quality","high","scale","noscale","name","FLVPlayer","salign","lt","pluginspage","http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash","movie","FLVPlayer_Progressive" ); */

document.getElementById("fullvideo").innerHTML=GetMovieStr(video, width, height);
document.getElementById("fullvideo").style.display="block";
return true;
}