///////////////////////////////////////////////////////////////////////////////
//
// GILITH
//
// Copyright (c) 2006-2009 Joe Hurd
//
///////////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////////////////
// Confirming an album clearing out.
///////////////////////////////////////////////////////////////////////////////

function confirm_clear_album() {
  return confirm('Are you sure you want to clear out this photo album?');
}

///////////////////////////////////////////////////////////////////////////////
// Confirming an album deletion.
///////////////////////////////////////////////////////////////////////////////

function confirm_delete_album() {
  return confirm('Are you sure you want to delete this photo album?');
}

///////////////////////////////////////////////////////////////////////////////
// Confirming a photo removal.
///////////////////////////////////////////////////////////////////////////////

function confirm_remove_photo() {
  return confirm('Are you sure you want to remove this photo from the album?');
}

///////////////////////////////////////////////////////////////////////////////
// Confirming a photo deletion.
///////////////////////////////////////////////////////////////////////////////

function confirm_delete_photo() {
  return confirm('Are you sure you want to delete this photo?');
}

///////////////////////////////////////////////////////////////////////////////
// Confirming emptying the trash.
///////////////////////////////////////////////////////////////////////////////

function confirm_empty_trash() {
  return confirm('Are you sure you want to empty the trash?');
}

