function activxFlash(id, iWith, iHeight, strFileUrl, bMenu, bPlay, wmode) {
	var str = "";
	var sID = "";
	
	if (id.length > 0) {
		sID = " id=\""+id+"\" name=\""+id+"\"";
	}
	
	str += "<object "+sID+" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\""+iWith+"\" height=\""+iHeight+"\">";
		str += "<param name=\"movie\" value=\""+strFileUrl+"\">";
		//str += "<param name=\"menu\" value=\""+bMenu+"\">";
		//str += "<param name=\"play\" value=\""+bPlay+"\">";
		str += "<param name=\"quality\" value=\"high\">";
		str += "<embed "+sID+" src=\""+strFileUrl+"\" menu=\""+bMenu+"\" quality=\"high\" wmode=\""+wmode+"\" bgcolor=\"#ffffff\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+iWith+"\" height=\""+iHeight+"\"></embed>";
	str += "</object>";
	
	document.write(str);
}


