Netscape 7.02 page sound generator

admin

Administrator
Staff member
Copied this script but still can not get it to work with Netscape 7.02, works fine with MSIE 6.0. I am sure that my problem is just me, and not knowing what I am doing, but if any one can lead me down the cherry lane, that would nice.

The sound plugin I used was Passport.mid from Windows Media file.




<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 2</title>
</head>

<body>

<script LANGUAGE="JavaScript">



<!-- Original: Kipp W. Shinabarger (<!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! <!-- m --><a class="postlink" href="http://javascript.internet.com">http://javascript.internet.com</a><!-- m --> -->

<!-- Begin
var MSIE=navigator.userAgent.indexOf("MSIE");
var NETS=navigator.userAgent.indexOf("Netscape");
var OPER=navigator.userAgent.indexOf("Opera");
if((MSIE>-1) || (OPER>-1)) {
document.write("<BGSOUND SRC=http://www.webdeveloper.com/forum/archive/index.php/Passport.mid LOOP=INFINITE>");
} else {
document.write("<EMBED SRC=Passport.mid AUTOSTART=TRUE ");
document.write("HIDDEN=true VOLUME=100 LOOP=TRUE>");
}
// End -->
</script>
<p></p>
<center>
<p><font face="arial, helvetica" size="-2">Free JavaScripts
provided<br>
by <a href="http://javascriptsource.com">The JavaScript
Source</a></font> </p>
</center>
<p></p>
<!-- Script Size: 0.81 KB -->

</body>

</body>

</html>
 
Back
Top