1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| <html>
<body>
<script language="JavaScript">
function LectureSon() { document.MonSon.play(); }
function PauseSon() { document.MonSon.pause(); }
function StopSon() { document.MonSon.stop(); }
//--></script>
<a href="javascript:LectureSon()"><img src="Lecture.gif" width="100" hight="100"></a><br>
<a href="javascript:PauseSon()"><img src="Pause.gif" width="100" hight="100"></a><br>
<a href="javascript:StopSon()"><img src="Stop.gif" width="100" hight="100"></a><br>
<embed src="Fichier.wav" hidden=true autostart=false loop=false name="MonSon" mastersound>
</body>
</html> |