function deletePhoto(photoKey,folderKey,tripKey,tag)
{
msgBox('querry','Are you sure you want to delete this photo?',
function(){
if ($('next_photo_key'))
{
var next_photo = $('next_photo_key').value;
}else
{
var next_photo = 0;
}
document.location.href='/waynphotos.html?wci=photo&wce=delete&photo_key=' + photoKey + '&folder=' + folderKey + '&next_photo=' + next_photo + '&trip=' + tripKey + '&tag=' + tag;
},
function(){
},' ');
}
function deleteFolder(folderKey) {
msgBox('querry','Are you sure you want to delete this album?\n(Your photos won\'t be deleted)</wl@txt>',
function(){
document.location.href='/waynphotos.html?wci=albums&wce=delete&folder=' + folderKey;
},
function(){
},' ');
}
function deleteTripFolder(folderKey) {
msgBox('querry','Removal of the Trip Album will cause the deletion of all of its content<br>Do you wish to proceed?',
function(){
document.location.href='/waynphotos.html?wci=albums&wce=delete&subt=trip_folder&folder=' + folderKey;
},
function(){
},' ');
}
