// JavaScript Document

    var UniqueID = 314 // Make each link open in a new window
    var newWinOffset = 0 // Position of first pop-up

    function PlayerOpen(soundfiledesc,soundfilepath) {
    PlayWin = window.open('',UniqueID,'width=320,height=190,top=' + newWinOffset +',left=0,resizable=0,scrollbars=0,titlebar=0,toolbar=0,menubar=0,status=0,directories=0,personalbar=0');
    PlayWin.focus();

    var winContent = "<html><head><title>" + soundfiledesc + "</title></head><body style=\"background-color: #FF9934;\">";
    winContent += "<strong style=\"font-size:2em; font-family:Verdana,sans-serif; line-height:1.5\">" + soundfiledesc + "</strong>";
    winContent += "<object>";
    winContent += "<param name=\"src\" value=\"" + soundfilepath + "\">";
    winContent += "<param name=\"autoplay\" VALUE=\"true\">";
    winContent += "<param name=\"controller\" VALUE=\"true\">";
    winContent += "<param name=\"bgcolor\" value=\"#FF9934\">";
    winContent += "<embed src=\"" + soundfilepath + "\" autostart=\"true\" loop=\"false\" width=\"300\" height=\"42\" controller=\"true\" bgcolor=\"#FF9900\"></embed>";
    winContent += "</object>";
    winContent += "<form><div style=\"text-align: center;\"><input type=\"button\" value=\"Close this window\" onclick=\"javascript:window.close();\"></div></form>";
    winContent += "</body></html>";

    PlayWin.document.write(winContent);
    PlayWin.document.close(); // "Finalizes" new window
    UniqueID = UniqueID + 1 // newWinOffset = newWinOffset + 20 // subsequent pop-ups will be this many pixels lower
    }






