
	function changeGallery() {
		value = document.galleryChoiceForm.galleryChoiceSelect[document.galleryChoiceForm.galleryChoiceSelect.selectedIndex].value;
		if (value != -1) {
			document.location.href = "index.php?gallery=" + value;
		} else {
			document.location.reload();
		}
	}

	function changeAdminGallery() {
		value = document.galleryChoiceForm.galleryChoiceSelect[document.galleryChoiceForm.galleryChoiceSelect.selectedIndex].value;
		if (value != -1) {
			document.location.href = "configure_photos_list.php?gallery=" + value;
		} else {
			document.location.reload();
		}
	}

