function showFlash (myPath, width, height) {
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/wflash.cab#version=6,0,40,0" bgcolor="#ffffff" width="'+width+'" height="'+height+'">');
	document.write ('<param name="movie" value="'+myPath+'" />');
	document.write ('<param name="play" value="true" />');
	document.write ('<param name="loop" value="true" />');
	document.write ('<param name="scale" value="noscale" />');
	document.write ('<param name="menu" value="true" />');
	document.write ('<param name="quality" value="high" />');
	document.write ('<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="'+myPath+'" bgcolor="#ffffff" width="'+width+'" height="'+height+'" play="true" loop="true" scale="noscale" menu="true" quality="high" />');
	document.write ('</object>');
}