function chargeVideo(id_video, titre, texte, date, related_product) {
  $("#video_titre").html(titre);
  $("#video_description").html(texte);
  $("#video_date").html(date);
  $("#video_related_product").html(related_product);
  playVideo(id_video);

}

function playVideo(video_id){
  document.getElementById("ytPlayer").cueVideoById(video_id);
  startVideo();
}
function startVideo(){
  window.location.href = window.location.href.replace(/#([^#]*)$/,'') + "#video_wrapper";
  document.getElementById("ytPlayer").playVideo();
}