    function OpenMediaWin(mediapage,width,height) {
var LeftPosition=(screen.width)?(screen.width-width)/2:100;
var TopPosition=(screen.height)?(screen.height-height)/2:100;
   Mediawin = window.open(mediapage, "website", "width=" + width + ",height=" + height + ",top="+TopPosition+",left="+LeftPosition+",toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
   Mediawin.focus();
}
    function OpenMediaWinMute(mediapage,width,height,psmsic) {
var LeftPosition=(screen.width)?(screen.width-width)/2:100;
var TopPosition=(screen.height)?(screen.height-height)/2:100;
   Mediawin = window.open(mediapage, "website", "width=" + width + ",height=" + height + ",top="+TopPosition+",left="+LeftPosition+",toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
   Mediawin.focus();
 if(psmsic == 'False') {
    pauseMusic();
  }
}
