function oobInit() {
	var i = window.location.href.indexOf("#");
	if (i) {
		Styles.setVisible('commentLink', false);
	} else {
		Styles.setVisible('commentArea', false);
	}
}

function showComment() {
  Styles.setVisible('commentLink', false);
  Styles.setVisible('commentArea', true);
}

function saveComment(clubId) {
  var comment = Styles.getElement('comment').value;
  authenticatedJSONRequest("courses.saveComment", commentSaved, comment, clubId);
}

function commentSaved(result) {
  if (result) {
    alert("Comments have been saved.");
    window.location.reload();
  }
}



 
