function jumpToAddReview() {
	var url = $("#addShowList").val();
	if (url.length > 0) {
		window.location.href = url + "#review";
	} else {
		alert("Please select a show to write a review for");
	}
}

