var newwindow;
function popUp(mp3,titolo)
{
    newwindow=window.open("",titolo,"width=340,height=100,top=100,left=100");
    newwindow.document.open();
    newwindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>'+titolo+'</title></head><body>');

    plugin_str = '<object type="application/x-shockwave-flash" data="../flash/dewplayer.swf?son=../' + mp3 + '" width="200" height="20"> <param name="movie" value="../flash/dewplayer.swf?son=../'+mp3+'" /> </object>';

    newwindow.document.write('<div style="valign:middle;">');
    newwindow.document.write(plugin_str);
    newwindow.document.write('&nbsp;</div>');

    newwindow.document.write("</body></html>");
    newwindow.document.close();
}
