function editVideo(url) {
  window.location = url;
}
function deleteVideo(url) {
  if ( confirm("Are you sure you want to delete this video?") ) {
    window.location = url;
  }
}