function deleteVideo(videoKey) {
msgBox('querry','Are you sure you want to delete this video?',
function(){
document.location = '/waynvideos.html?wci=video&wce=remove&video=' + videoKey;
return true;
},
function(){
return false;
},' ');
}
function removeFromPlaylist(folderKey, videoKey, page) {
msgBox('querry','Are you sure you want to remove this video from playlist?',
function(){
document.location = '/waynvideos.html?wci=playlistedit&wce=removeVideo&folder=' + folderKey + '&video=' + videoKey + '&page=' + page;
return true;
},
function(){
return false;
},' ');
}
