var total;//定义flash影片总桢数
var frame_number;//定义flash影片当前桢数

//显示影片载入进度，完全载入后控制按钮可用
function jindu(){
 var in_ID;
 bar.style.width=Math.round(movie.PercentLoaded())+"%";
 bar.innerText=movie.PercentLoaded()+"%";
 if(movie.PercentLoaded()<100){
	frameCount.innerText = "Loading"; 

	 
 }else if(movie.PercentLoaded()==100){
	frameCount.innerText ="ok";


 }

	  
 if(movie.PercentLoaded() == 100){
	  //movie.LoadMovie(0,fsrc);
	   //total=movie.TotalFrames;
	  //frame_number++;
	  //frameCount.innerText=frame_number+"/"+total;
	  //bar.style.background="";
	  //bar.style.width="0%"
	  bar.innerHTML='<img src="/images/posbar1.gif" style="border:0;" id="element" class="drag">';
	  clearTimeout(in_ID); 
 }else {
	  in_ID=setTimeout("jindu();",1000);
 }
	  //alert(in_ID);
}


//开始载入flash影片，载入过程中，播放控制按钮不可用
function loadSWF(fsrc,fwidth,fheight){

 jindu();

 
}

barheight=15/height*100+"%";

function showswf()
{
document.getElementById("swfdiv").style.display="block";
document.getElementById("loadimg").style.display="none";
}
