<!-- 

function Play_Midi(fname) {
  if (navigator.appVersion.indexOf('MSIE')==-1) {
    document.write("<EMBED SRC='http://www.ip.pt/top5webzine/songs/" + fname + "' AUTOSTART=FALSE LOOP=TRUE VOLUME=50 WIDTH=144 HEIGHT=60 CONTROLS=CONSOLE>");
  } else {
    document.write("<EMBED SRC='http://www.ip.pt/top5webzine/songs/" + fname + "' AUTOSTART=FALSE LOOP=TRUE VOLUME=50 WIDTH=130 HEIGHT=30 CONTROLS=CONSOLE>");
  }
}

function Play_Midi_Auto(fname) {
  if (navigator.appVersion.indexOf('MSIE')==-1) {
    document.write("<EMBED SRC='http://www.ip.pt/top5webzine/songs/" + fname + "' AUTOSTART=TRUE LOOP=TRUE VOLUME=50 WIDTH=144 HEIGHT=60 CONTROLS=CONSOLE>");
  } else {
    document.write("<EMBED SRC='http://www.ip.pt/top5webzine/songs/" + fname + "' AUTOSTART=TRUE LOOP=TRUE VOLUME=50 WIDTH=130 HEIGHT=30 CONTROLS=CONSOLE>");
  }
}

//--> 

