Not loading plugin for flash player 6

I have a client that uses flash player 5. So, I publish to Flash 5.

Unfortunately, the browser is still looking for the latest version of the player.

How do I get the browser to ignore the latest version of the player (version 6) and simply use 5 the way I need to?

Which HTML are you using to embed the Flash Movieā€¦use this one because it checks for only the Flash 5 plugin:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="32" height="32">
  <param name=movie value="circular.swf">
  <param name=quality value=high>
  <embed src="circular.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="32" height="32">
  </embed> 
</object>