// Copyright (C) 1999 LiveUpdate division of LABTECH 
// Permission for use granted to all music lovers on the net 
function PlayNS(musicFile)
{
   if (navigator.appName == "Netscape")
      {
      var EmbedString
      var musicFile

      EmbedString = "<EMBED SRC='" + musicFile + "'"
      EmbedString += "PLUGINSPAGE='http://www.liveupdate.com/dl2.html' HEIGHT=55 WIDTH=200 LOOP=1>"
      document.write(EmbedString)
      }
}

function PlaySong(songURL)
{
   if (navigator.appName == "Netscape")
      PlayNS(songURL)
   else PlayIE(songURL)
}


