I've never embedded a website before, but I know Flash movies have to implemented in two different ways (just like AJAX) because IE and FF have completely different ways of handling it.
For IE You insert <object> tags like this...
Code:
<object attributes="blahblahNotRelevantToYou">
<param attribute="something">
<param attribute="something">
<param attribute="something">
<param attribute="something">
</object>
And it's the parameters that define everything for IE, and I think that's what you may be missing. Again, for Flash you then insert at the end of the param tags an <embed> with all the info (yes, a second time just for FF).
Code:
<object attributes="blahblahNotRelevantToYou">
<param attribute="something">
<param attribute="something">
<param attribute="something">
<param attribute="something">
<embed attributes="OhMyGoshALotOfAttributesAndValuesInOneBigLongMess" />
</object>
And it sounds like you have the same issue. FF works because it's getting the info from the embed tag, but IE requires valid (X)HTML for this (the W3C considers this an illegal use of the embed tag). So IE requires everything set a second time in the param tags.
-------------------------
Whatever you can do or dream you can, begin it. Boldness has genius, power and magic in it. Begin it now.
-Johann von Goethe
When Two Hearts Race... Both Win.
-Dove Chocolate Wrapper
Chroniclemaster1, Founder of
www.EarthChronicle.com
A Growing History of our Planet, by our Planet, for our Planet.