var newwindow;
function popUp(mp3,titolo)
{
    newwindow=window.open('','','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>');

    newwindow.document.write('<div style="valign:middle;">');
    newwindow.document.write('&nbsp;</div>');
    newwindow.document.write('<object class="player" ID="objMediaPlayer" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject" width="144" height="40">');
    newwindow.document.write('<param name="FileName" value="'+mp3+'">');
    newwindow.document.write('<param name="Hidden" Value="false">');
    newwindow.document.write("<embed type='application/x-mplayer2' AUTOREWIND='0' SHOWCAPTIONING='0' src='"+mp3+"' SHOWGOTOBAR='0' AUTOSIZE='1' NAME='objMediaPlayer'");
    newwindow.document.write("SHOWPOSITIONCONTROLS='0' SHOWDISPLAY='0' SHOWTRACKER='1' SHOWCONTROLS='1' SHOWSTATUSBAR='0' AUTOSTART='true'"); 
    newwindow.document.write("windowlessvideo='false' showfullscreencontrols='false' width=144 height=40 name='player'></embed>");
    newwindow.document.write(' </object>'); 
    newwindow.document.write("</body></html>");
    newwindow.document.close();       
}