﻿function playswf(elem,playurl,scale){
   var list=document.getElementById(elem);
   var w=list.parentNode.offsetWidth-24;

   //if(w>500){
	  w = 380;   
  // }
   var h=parseInt(w/scale);
   //list.style.backgroundImage="url(http://pic.awoo-dev.cn/images/share/upload_progress.gif)";
   list.innerHTML='&nbsp;<object width="'+w+'" height="'+h+'"><param name="movie" value="'+playurl+'"></param><param name="allowScriptAccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="'+playurl+'" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'" allowFullScreen="true" wmode="transparent" allowScriptAccess="always"></embed></object>';   
   list.style.marginBottom= 10 ;
   try{
	list.style.styleFloat= "none";
	list.style.cssFloat= "none";
	list.style.styleWidth= "405px";
   }catch(e){};
   list.onclick="";
}