int years = YearsBetween(time1, time2);
int mons = MonthsBetween(time1, time2);
int days = DaysBetween(time1, time2);
int hours = HoursBetween(time1, time2);
int mins = MinutesBetween(time1, time2);
int secs = SecondsBetween(time1, time2);
int msecs = MilliSecondsBetween(time1, time2);