function onYouTubePlayerReady(playerId) {
  ytplayer = document.getElementById(playerId);
}

function loadNewVideo(videoId, startSeconds) {
  ytplayer.loadVideoById(videoId, startSeconds)
}


