<!--  ***** BEGIN Google Analytics ***** -->

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-889123-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

<!--  ***** END Google Analytics ***** -->


<!--  ***** BEGIN Countdown Days ***** -->
function Countdown(endDate) 
{	var nowDate = new Date();
	var endDate = new Date(endDate);
	var gap = endDate.getTime() - nowDate.getTime();
	gap = Math.floor(gap / (1000 * 60 * 60 * 24));
	if (gap < 0) {
		document.getElementById("CountDate").innerHTML="0";
	} else {
		document.getElementById("CountDate").innerHTML=gap;
	}
	
}
<!--  ***** END Countdown Days ***** -->



