Browser compatibility issues

Hello,

The web standards have obviously changed because IE7 does not like the <embed> tag anymore. I embedded quick time audio (in javascript) into my site and it works great on firefox. However when i try on IE7 & Opera I get the javascript code displayed. Here is the code

On the header tags:

<script src="jsscripts/AC_QuickTime.js" language="JavaScript" type="text/javascript"></script>
<script src="jsscripts/InsertAudio.js" language="javascript" type="text/javascript"></script>

The body tag:

<script language="JavaScript"type="text/javascript" >InsertAudio();</script>
                <script language="JavaScript" type="text/javascript">
          QT_WriteOBJECT('mp3s/1.mp3' , '150' , '40', '', 'AUTOPLAY', 'False', 'CONTROLLER' , 'true' , 'LOOP', 'false', 'VOLUME' , '100' );    
            </script>

What am I doing wrong? Thanks in advance.