﻿// Show or Hide Video Player when modal popup is fired
function showOrHideVideoPlayer(status) {
    var videoPlayerLayer = document.getElementById("player");
    if (videoPlayerLayer != null) videoPlayerLayer.style.visibility = status;
}
