			var to;

			function doTimer()
			{
				showCalorie();
				to = setTimeout("doTimer();", 100);
			}

			function showCalorie()
			{
				tw = 0;
				d = 0;
				var sd = new Date(2008, 8, 21);
				var today = new Date();
				d = today.getTime() - sd.getTime();
				tw = ((0.7242*(26554032 + .0001 * d)) * 1.352) + ((((0.7242*(297534032 + .0001 * d)) * 1.15) / 31556926000))*d/40;
				window.document.tf.tt.value = addCommas(Math.round(tw));
			}

			function addCommas(nStr)
			{
				nStr += '';
				x = nStr.split('.');
				x1 = x[0];
				x2 = x.length > 1 ? '.' + x[1] : '';
				var rgx = /(\d+)(\d{3})/;
				while (rgx.test(x1)) {
					x1 = x1.replace(rgx, '$1' + ',' + '$2');
				}
				return x1 + x2;
			}