+1  A: 

You cannot have 'px' in the width and height attributes, only a number. Also IDs cannot start with an underscore, they can only start with a letter.

So your code should start <object width="480" height="294" id="f_36313041". However, if the ID is used for anything you may have to change external code somewhere.

Have you double-checked the value of "flashvars" too? It's an incredibly long and complex string so there could easily be an error there somewhere.

DisgruntledGoat
I've tried to remove px and also id but still wont work in IE.Its not my website, but i need to embed the video on my website. But when you look at forexample YouTubes embed code it also have embed-tag, is that perhaps why it wont work in IE? Doesn't IE use embed-tag whilst Firefox use object and param tags?
jamietelin
No, IE doesn't need embed tags at all, that's an old Netscape thing IIRC. IE does need the "movie" parameter, which you have added.
DisgruntledGoat
On further thought... since that site is the one giving you bad code, maybe you should try and take it up with them if you can? I'm sure they want their embed code to work in all browsers!
DisgruntledGoat
Yeah will do that, but still would like to know what is wrong and how to fix it :) When i use that embed code in IE it's just blank, all white. If I right click it do get the Flash menu but no video is ever loaded.
jamietelin
A: 

You should not create object/embed tags directly to embed Flash. Always use an external JS file to generate the required tags. SWFObject is the most widely used one.

http://en.wikipedia.org/wiki/SWFObject

Info on why you want to use an external JS file:

http://blog.deconcept.com/2005/12/15/internet-explorer-eolas-changes-and-the-flash-plugin/

Sam
What http://blog.deconcept.com/2005/12/15/internet-explorer-eolas-changes-and-the-flash-plugin/ says is not the case in IE8 anymore if I am not mistaken.
jamietelin
@jamietelin, I wasn't sure, but I couldn't find a definitive reference either way. Can you? Regardless, using `SWFObject` is still better.
Sam