If i want a image to show if this flash cannot be loaded how do i do that?
You could wrap the object tag in a div and apply a background-image to the div.
object
div
background-image
CSS:
.wrapper { background: url(path/to/image.png); }
HTML:
<div class="wrapper"> <object.. </div>