
/* Common javascripts and localized strings for Zenphoto */

var zppath =  "/zp-core";

var zpstrings = {
	/* Used in jquery.editinplace.js */
	'Save' : "Guardar",
	'Cancel' : "Cancelar",
	'Saving' : "Guardando",
	'ClickToEdit' : "Click para editar...",
	/* Used in thickbox.js */
	'Test' : "Test",
	'Close' : "Cerrar",
	'close' : "cerrar",
	'orEscKey' : "o la tecla Esc",
	'Next' : "Siguiente",
	'Prev' : "Anteior",
	'Image' : "Imagen",
	'of' : "de"
};

// Toggle element display
function toggle(x) {
	jQuery('#'+x).toggle();
}

function confirmDeleteAlbum(url, message1, message2) {
	if (confirm(message1)) {
		if (confirm(message2)) {
			window.location = url;
		}
	}
}

function confirmDeleteImage(url, message) {
	if (confirm(message)) {
		window.location = url;
	}
}


