//脚本功能：去掉IE中Flash控件框激活边线　作者：某个老外
//需传参数：文件地址路径；文件名；是否透明；是否置于流媒体之上；宽度；高度
//调用方法：<script language="JavaScript">C_Flashs('swf/','banner',1,0,799,219);</script>

function C_Flashs(url,fhname,tpid,opid,fhwidth,fhheight){
	if (tpid=1){wmodea="wmode=\"transparent\""}
	if (opid=1){wmodeb="wmode=\"opaque\""}// Media(Top/bottom)
	document.write("<embed src=\""+[url]+"/"+[fhname]+".swf\" quality=\"high\" "+[wmodea]+" "+[wmodeb]+" menu=\"false\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+[fhwidth]+"\" height=\""+[fhheight]+"\"></embed>");
}