// JavaScript pop up window for the audio player

function displayPlayer(url,width,height) 
{
 var new_url = url;
 var window_size = "resizable=yes,scrollbars=yes,top=75,left=75,width="+width+", height="+height;
 bPopUp=window.open(new_url,"pop",window_size);
 self.bNoteWin=bPopUp.focus();
}

