﻿/*
*	BOIMTY专用FLASH控件代码
*	boimty@163.com
*	Don't copy or disseminates this code. That's order.
*/
function insertFlash(boimty, url, w, h, id) {
 if (!document.getElementById(boimty)) return;
 var str = '';
 str += '<embed width="'+ w +'" height="'+ h +'" src="'+ url +'" quality="autohigh" wmode="opaque" type="application/x-shockwave-flash" plugspace="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" id='+id+'></embed>';
 document.getElementById(boimty).innerHTML = str;
}

//透明
function insertFlash1(boimty, url, w, h, id) {
 if (!document.getElementById(boimty)) return;
 var str = '';
 str += '<embed width="'+ w +'" height="'+ h +'" src="'+ url +'" quality="autohigh" wmode="transparent" type="application/x-shockwave-flash" plugspace="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" id='+id+'></embed>';
 document.getElementById(boimty).innerHTML = str;
}