function getDaysUntil() {

	today = new Date();

 	targetdate = new Date("June 18, 2010");
		
	/* Set a variable with number of milliseconds per day: Hours times minutes times seconds times a thousand */
	
	milliseconds = (24 * 60 * 60 * 1000);
	
	remaining = ((targetdate.getTime() - today.getTime()) / milliseconds);
	
	remaining = Math.round(remaining);
	
	return remaining

}
