function confirmLogout() {
  if(confirm("Are you sure you want to logout?\n\nOk to continue, Cancel to abort."))
    window.location='/logout/';
}

$(function() {
  $('select#reportSelected').change(function() {
    var code = $(this).val();
    if(code)
      openAnalysisHistorical(code);
  });
});

function checkCountyOther(field) {
	if($('#'+field+' :selected').val() == 'Other') {
		$('#countyOtherSpecify').show();
	}
	else {
		$('#countyOtherSpecify').val('');
		$('#countyOtherSpecify').hide();
	}
}
