// JavaScript Document

function displayPlayer(url,width,height) 
{
 var new_url = url;
 var window_size = "resizable=yes,scrollbars=no,top=100,left=75,width="+width+", height="+height;
 bPopUp=window.open(new_url,"pop",window_size);
 self.bNoteWin=bPopUp.focus();
}


