function flash(arquivo, w, h){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + w + '" height="' + h + '">');
	document.write('<param name="movie" value="'+arquivo+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<embed src="'+arquivo+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + w + '" height="' + h + '" WMODE="transparent"></embed>');
	document.write('</object>');
}

function divx(arquivo, w, h){
	document.write('<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="' + w + '" height="' + h + '" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">');
	document.write('<param name="custommode" value="Stage6" />');
	document.write('<param name="src" value="'+arquivo+'" />');
	document.write('<embed type="video/divx" src="'+arquivo+'" custommode="Stage6" width="' + w + '" height="' + h + '" pluginspage="http://go.divx.com/plugin/download/">');
	document.write('</embed>');
	document.write('</object>');
}