Aida | twenty | Toronto | lunchboxes Instagram/snapchat: aidastanford
//######################################################################################
// Author: ricocheting.com // Version: v2.0 // Date: 2011-03-31 //
Description: displays the amount of time until the "dateFuture"
entered below. // NOTE: the month entered must be one less than
current month. ie; 0=January, 11=December // NOTE: the hour is in 24
hour format. 0=12am, 15=3pm etc // format: dateFuture1 = new
Date(year,month-1,day,hour,min,sec) // example: dateFuture1 = new
Date(2003,03,26,14,15,00) = April 26, 2003 - 2:15:00 pm dateFuture1 =
new Date(2014,05,01,0,0,0); // TESTING: comment out the line below to
print out the "dateFuture" for testing purposes
//document.write(dateFuture +"");
//################################### //nothing beyond this point
function GetCount(ddate,iid){ dateNow = new Date(); //grab current
date amount = ddate.getTime() - dateNow.getTime(); //calc milliseconds
between dates delete dateNow; // if time is already past if(amount