I am trying to put more than one video on a web page. But after putting the 1st video on the page when I try to put the second one , the 1st one mysteriously gets replaced with the 2nd. That means second video does not show at the place in the web page where I put it , but somehow comes in the position of the first one ( replaces it ). Thus only one video remains on the page.
I have checked the script tags to see if they are not broken. Can someone please let me know if there is some trick to put more than one video on a page ? What am I missing ? Thanking you in advance for your kind help ...
Details :
Web page http://www.glad2teach.co.uk/fast_maths_calculation_tricks_copy(2).htm
Script for Video 1
<script type="text/javascript" src="/embed/swfobject.js"></script> <div id="player">This text will be replaced</div> <script type="text/javascript">var so = new SWFObject('/embed/player.swf','mpl','640','500','9');so.addParam('allowscriptaccess','always');so.addParam('allowfullscreen','true');so.addParam('flashvars','&author=Glad2teach.co.uk&description=Base 50&file=http://www.glad2teach.co.uk/video_flv/NewCode__Base50.flv&image=http://www.glad2teach.co.uk/images/s...');so.write('player');</script>
Script for Video 2
<script type="text/javascript" src="/embed/swfobject.js"></script> <div id="player">This text will be replaced</div> <script type="text/javascript">var so = new SWFObject('/embed/player.swf','mpl','640','500','9');so.addParam('allowscriptaccess','always');so.addParam('allowfullscreen','true');so.addParam('flashvars','&author=Glad2teach.co.uk&description=Base 50&file=http://www.glad2teach.co.uk/video_flv/NewCode__Base50.flv&image=http://www.glad2teach.co.uk/images/s...');so.write('player');</script>

Correction the script for video 1 is
<script type="text/javascript" src="/embed/swfobject.js"></script> <div id="player" align="center">.</div> <script type="text/javascript">var so = new SWFObject('/embed/player.swf','mpl','640','500','9');so.addParam('allowscriptaccess','always');so.addParam('allowfullscreen','true');so.addParam('flashvars','&author=Glad2teach.co.uk&description=Faster Multiplication&file=http://www.glad2teach.co.uk/video_flv/NewCode__Multi_with-11.flv&image=http://www.glad2teach.co.uk/i...');so.write('player');</script>