// JavaScript Document


var filename="http://www.dev8.net/aud/dictaphone1.mp3";
if (navigator.appName == "Microsoft Internet Explorer")
    document.writeln ('<BGSOUND SRC="' + filename + '">');
else if (navigator.appName == "Netscape")
    document.writeln ('<EMBED SRC="' + filename + '"autostart="true" loop="true" height="0" width="2"><P>');

