/************************************************************
+	Photo functions
*************************************************************/

function goPhotoEvent() {
	var id = document.getElementById("event").options[document.getElementById("event").selectedIndex].value;
	if (id != "") { location.href = "/photo_gallery.php?event=" + id; }
	return;
}

function goPhotoCategory() {
	var id = document.getElementById("category").options[document.getElementById("category").selectedIndex].value;
	if (id != "") { location.href = "/photo_gallery.php?category=" + id; }
	return;
}