Помогите плз, вот так глючит:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Звук повторяется бесконечно</title>
</head>
<body bgcolor="#bff0e3">
<script>
<!--
function timer () {
var sound="signal.wav"
x = sound
if (navigator.appName=="Microsoft Internet Explorer")
document.write('<bgsound src='+'"'+x+'"'+' loop="infinite">')
else
document.write('<embed src='+'"'+x+'"'+'hidden="true" border="0" width="20" height="20" autostart="true" loop="true">')
}
function runner () {
timer();
var timerMulti = window.setInterval("timer();", 10000);
runner();
}
runner();
//-->
</script>
</body>
</html>