﻿function showVid(id) {
    if (document.getElementById("mediaplayer")){
        playItem(id);
    }
    else{
        window.location = "video.aspx?id=" + id;
    }
}
