// Display flash animations files, and avoids the ActiveX
// "Click here to activate and use this control" prompt
function DisplayFlash(element_id,swf_file,flash_width,flash_height)
{
    // Insert the flash file inside of the specified Tag's Id
	document.getElementById(element_id).innerHTML = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='" + flash_width + "' height='" + flash_height + "' id='movie' align=''><param name='movie' value='" + swf_file + ".swf'/><!--[if !IE]><--><object type='application/x-shockwave-flash' data='" + swf_file + ".swf' width='" + flash_width + "' height='" + flash_height + "'>Description of Flash Content for screen readers</object><!--><![endif]--><!--[if IE]>Description of Flash Content for screen readers<![endif]--></object>";
}