

    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=286,height=147,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 bgcolor=#424A5B bgproperties=fixed leftmargin=0 topmargin=0>";
    winContent += "<B >" + soundfiledesc + "</B>";
    winContent +=  "<img src=radiozomb.jpg border=0><iframe src=\"radiosig2.htm\" align=top width=286 height=30 frameborder=\"0\" scrolling=no></iframe>";
 
    winContent += "<OBJECT width='286' height='50'>";
    winContent += "<param name='SRC' value='" + soundfilepath + "'>";
    winContent += "<param name='AUTOPLAY' VALUE='true'>";
    winContent += "<param name='CONTROLLER' VALUE='false'>";
    winContent += "<param name='BGCOLOR' VALUE='#424A5B'>";
    winContent += "<EMBED SRC='" + soundfilepath + "' AUTOSTART='TRUE' LOOP='FALSE' WIDTH='286' HEIGHT='50' CONTROLLER='FALSE' showtracker='0' showdisplay='0' showstatusbar='1' videoborder3d='-1' displaysize='4' autosize='-1' BGCOLOR='#424A5B'></EMBED>";
    winContent += "</OBJECT>";



    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
    }
