function daysSinceDeath(){  today = new Date();  dateOfDeath  = new Date(1995, 6, 14);  converttodays = 1000*60*60*24;    difference = today - dateOfDeath;    document.write ( "Roger passed away " + Math.floor(difference/converttodays) + " days ago" );}
