/**
 * Write a flash movie to the page.
 */
function writeFlash(path, width, height)
{
	flashembed('flash', { 
				src: path, 
				width: width, 
				height: height, 
				onFail: function() { document.getElementById('flash').innerHTML = '<div class="error"><p><strong>Error:</strong> You must have Flash Player installed to view this content. <a href="http://get.adobe.com/flashplayer/" target="_blank">Install Adobe Flash Player.</a></p></div>' } 
			}
	);
}
