public static long[] getGoalPercentage(Long eventId, int eventGoal) {
   long total[] = new long[3];
   total[0] = models.Donation.getTotalEventDonations(eventId);
   if (total[0] == 0 || eventGoal == 0) {
     total[1] = 0;
     total[2] = 0;
     return total;
   }
   final int percentage = Long.valueOf((total[0] * 100) / eventGoal).intValue();
   if (percentage > 150) {
     total[2] = 150;
   } else if (percentage < 10) {
     total[2] = 1;
   } else {
     total[2] = round(percentage);
   }
   total[1] = percentage;
   return total;
 }