function addflash(target,url,w,h,wmode) {
	if(typeof target=='string') var target=document.getElementById(target);
	
	var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '
	+ 'width="'+w+'" height="'+h+'" '
	+ 'codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab"> '
	+ '<param name="movie" value="'+url+'" />'
	+ '<param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'
	+ '<param name="wmode" value="'+wmode+'" />'
	+ '<embed src="'+url+'" quality="high" bgcolor="#ffffff" '
	+ 'width="'+w+'" height="'+h+'" name="" align="middle" '
	+ 'wmode="'+wmode+'" '
	+ 'quality="high" '
	+ 'allowScriptAccess="sameDomain" '
	+ 'type="application/x-shockwave-flash" '
	+ 'style="vertical-align: bottom;" '
	+ 'pluginspage="https://www.macromedia.com/go/getflashplayer">'
	+ '<\/embed>'
	+ '<\/object>';
	
	target.innerHTML=oeTags;
}

