function RunFlash(path, id, width, height)
	{
	document.write('<object type="application/x-shockwave-flash" id="'+id+'"\n ');
	document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"\n ' );
	document.write('classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"\n ' );
	document.write('width="'+width+'" height="'+height+'" data="assets/Flash/'+path+'">\n');
	document.write('<param name="movie" value="assets/Flash/'+path+'" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('<embed src="assets/Flash/'+path+'" width="'+width+'" height="'+height+'" wmode="transparent"></embed>\n');
	document.write('<p>To view this image you need the flash player plugin installed. \n');
	document.write('<a href="http://www.macromedia.com/go/getflash/">Download flash player for free here.</a></p>\n');
	document.write('</object>\n');
}

