function updateTimeLeft() { 
	// Today's date 
	var today = new Date(); 			
	todayEpoch = today.getTime() / 1000; 
	
	// When the online Course Evalutions will end
	// * THIS NEEDS TO BE UPDATED MANUALLY ON A PER TERM BASIS
	target = new Date(2008, 5, 9, 8, 0, 0); 
	targetEpoch = target.getTime() / 1000; 
	
	diffSeconds = targetEpoch - todayEpoch; 
	
	if (diffSeconds > 0) {
		secondsInDay = 60 * 60 * 24; 
		secondsInHour = 60 * 60; 
		
		days =  Math.floor(diffSeconds / secondsInDay); 
		secondsLeft = diffSeconds % secondsInDay;
		
		hours = Math.floor(secondsLeft / secondsInHour); 
		secondsLeft = secondsLeft % secondsInHour; 
		
		minutes = Math.floor(secondsLeft / 60); 
		seconds = Math.floor(secondsLeft % 60); 
		
		
		output = '<a href="https://secure.lebow.drexel.edu/CourseEval/?e=hp_countdown" style="text-decoration: none; color: #F00; font-size: 90%; font-weight: bold;">'  + days.toString() + ' days ' + hours.toString() + ' hrs ' + minutes.toString() + ' min ' + seconds.toString() + ' sec</a>';
		document.getElementById('timeLeft').innerHTML = output; 
	} 
} 