
function flashReplace(elem_name, flash_name, flash_file, flash_width, flash_height, flash_ver, bgcol) {
	if(bgcol == '')
		bgcol = '000000';
		
	var obj_decl = '';
	obj_decl += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+flash_width+'" height="'+flash_height+'" id="'+flash_name+'" align="middle">';
	obj_decl += '<param name="allowScriptAccess" value="sameDomain" />';
	obj_decl += '<param name="movie" value="'+flash_file+'" /><param name="quality" value="high" /><param name="bgcolor" value="#'+bgcol+'" /><embed src="'+flash_file+'" quality="high" bgcolor="#'+bgcol+'" width="'+flash_width+'" height="'+flash_height+'" name="'+flash_name+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	obj_decl += '</object>';
	obj_decl += '';
	
	the_elem = document.getElementById(elem_name);
	
	the_elem.innerHTML = obj_decl;
}