// JavaScript Document
																
today  = new Date();
todayEpoch  = today.getTime();

target = new Date("8/08/2010"); 
targetEpoch = target.getTime();

daysLeft = Math.floor(((targetEpoch - todayEpoch) / (60*60*24)) / 1000);
if(daysLeft >= 0){
	document.write("<center><font style='color:red;'><b>" + daysLeft + "</b></font> days until the Annual Conference<center>");
	}
						