function showflash(name,swf,width,height,bgcolor,vars){
if(bgcolor==null||bgcolor==""){var transparent="opaque"}else{var transparent="transparent"}
var showtext='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" name="'+name+'" width="'+width+'" height="'+height+'" align="middle" id="index">\n';
showtext=showtext+'<param name="allowScriptAccess" value="sameDomain" />\n';
showtext=showtext+'<param name="allowFullScreen" value="false" />\n';
showtext=showtext+'<param name="movie" value="'+swf+'?'+vars+'" />\n';
//showtext=showtext+'<param name="FlashVars" value="'+vars+'" />\n';
showtext=showtext+'<param name="quality" value="high" />\n';
showtext=showtext+'<param name="scale" value="noscale" />\n';
showtext=showtext+'<param name="bgcolor" value="'+bgcolor+'" />\n';
showtext=showtext+'<param name="wmode" value="'+transparent+'" />\n'; 
showtext=showtext+'<embed src="'+swf+'?'+vars+'" quality="high" scale="noscale" wmode="'+transparent+'" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+name+'" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer_cn" />\n';
showtext=showtext+'</object>\n';
document.write (showtext); 
}
