function showFlashMovie(fullPath, theWidth, theHeight, movieID)
{
	if (window.ActiveXObject)
	{
		// browser supports ActiveX
		// Create object element with 
		// download URL for IE OCX
		
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
		document.write(' codebase="http://download.macromedia.com');
		document.write('/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"');
		document.write(' width="'+theWidth+'" height="'+theHeight+'" id="'+movieID+'">');
		document.write(' <param name="movie" value="'+fullPath+'" />');
		document.write(' <param name="quality" value="high" />');
		document.write(' <param name="swliveconnect" value="true" />');
		document.write('<\/object>');
	}	
	else
	{
		// browser supports Netscape Plugin API
		
		document.write('<object id="'+movieID+'" data="'+fullPath+'"');
		document.write(' type="application/x-shockwave-flash"');
		document.write(' width="'+theWidth+'" height="'+theHeight+'">');
		document.write('<param name="movie" value="'+fullPath+'" />');
		document.write('<param name="quality" value="high" />');
		document.write('<param name="swliveconnect" value="true" />');
		document.write('<p>You need Macromedia Flash for this.');  
		document.write('<br />Get the latest free version from');
		document.write(' <a href="http://www.macromedia.com/downloads">here<\/a>.');
		document.write('<\/p>');
		document.write('<\/object>'); 
	}
}
