Flash Questions

I would like to know if it’s possible to have a replacement if the user has flash disabled as in text or a graphic etc ? Is it also possible to have Flash behind a DIV ?

Yes, it is. You nest objects within objects, like so:

<object data="/flash/anim.swf" type="application/x-shockwave-flash" width="840" height="118">
  <param name="movie" value="/flash/anim.swf">
  <param name="wmode" value="opaque">
	<object type="image/gif" data="/images/anim.gif">
		<p>an animation about...</p>
	</object>
</object>

In this example, if flash is available, you see a flash animation. If Flash ain’t available, you get an image instead. If images are disabled, you get a paragraphs instead.