// JavaScript Document

// Design By idweb.cn
function MakeFlashString(source,width,height,wmode, otherParam,titlename){
var OsObject = ""; 
    if(navigator.userAgent.indexOf("MSIE")>0) { 
      
	return "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\" width=\""+ width +"\" height=\"" + height + "\"> <param name=\"menu value=\"false\" /><param name=\"movie\" value=\""+ source +"\" /><param name=\"wmode\" value=\""+wmode+"\" /><param name=\"FlashVars\" value=\""+titlename+"\" /></object>";

	   
    }else{		
	
	return "<embed src="+source+" quality=high wmode="+wmode+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+width+" height="+height+"></embed>";
}

}
// innerHTML Type
function SetInnerHTML(target, code)
{ 
	target.innerHTML = code; 
}

// Direct Write Type
function DocumentWrite(src)
{
	document.write(src);
}