// Calculate the number of days Gao Zhisheng has been imprisoned.  He was sent to prison on Feb 4, 2009
currentDate = new Date();
imprisonedDate = new Date("February 4, 2009");
daysImprisoned = (currentDate - imprisonedDate)/(1000*60*60*24);
document.write(Math.floor(daysImprisoned));