function launchPlayer(url, name, width,height) {
  popupWin = window.open(url, name, 'menubar=no,status=no,toolbars=no,resizable=yes,scrollbars=yes,width='+width+',height='+height+',screenX=100,left=100,screenY=0,top=0')
popupWin.focus();
 msgWindow.opener = self;
  }

