function flashme() {
	html = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="560" height="168" id="cdb" align="middle">';
	html = html + '<param name="allowScriptAccess" value="sameDomain" />';
	html = html + '<param name="movie" value="/flash/cdbxml.swf" />';
	html = html + '<param name="quality" value="high" />';
	html = html + '<param name="wmode" value="transparent" />';
	html = html + '<param name="bgcolor" value="#dfdfdf" />';
	html = html + '<embed src="/flash/cdbxml.swf" quality="high" bgcolor="#dfdfdf" width="560" height="168" name="cdb" align="middle" allowScriptAccess="sameDomain" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	html = html + '</object>';
	document.write(html);
}
flashme();



objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
}

