function ddlPhotosChange() {
	if (document.frmPhotos.selPhotos.options[document.frmPhotos.selPhotos.selectedIndex].value != "") {
		window.location = "photos.php?album=" + 
		document.frmPhotos.selPhotos.options[document.frmPhotos.selPhotos.selectedIndex].value;
	}	
}

function ddlReservationsChange() {
	if (document.frmReservations.selReservations.options[document.frmReservations.selReservations.selectedIndex].value != "") {
		window.location = "reservations.php?date=" + 
		document.frmReservations.selReservations.options[document.frmReservations.selReservations.selectedIndex].value;
	}	
}
