  function iCounter() {
	  
	  
   	//var nxtXmas=(new Date().getMonth()>=3 && new Date().getDate()>10)? (new Date().getFullYear())+1 : new Date().getFullYear();
	
	var nxtXmas=(new Date().getMonth()>=4 && new Date().getDate()>10)? (new Date().getFullYear())+1 : new Date().getFullYear();
	
	
	
	var cDateTime=new Date();
	var tDateTime=new Date("April 10, "+nxtXmas+" 14:0:00");
	//var tDateTime=new Date("June 11, "+nxtXmas+" 0:0:00");
	var timeDiff=(tDateTime-cDateTime)/1000; //difference btw target date and current date, in seconds
	var oneMin=60; //1 minute in seconds
	var oneHour=60*60; //1 hour in seconds
	var oneDay=60*60*24; //1 day in seconds
	var totalDay=Math.floor(timeDiff/oneDay);
	var totalHour=Math.floor((timeDiff-totalDay*oneDay)/oneHour);
	var totalMin=Math.floor((timeDiff-totalDay*oneDay-totalHour*oneHour)/oneMin);
	var totalSec=Math.floor((timeDiff-totalDay*oneDay-totalHour*oneHour-totalMin*oneMin));
	
	
	
	//Disply Christmas Countdown to Web Browser
	document.getElementById("nxtXmas").innerHTML = 'Count Down - New York Tartan Day Parade!<br /><span>' + totalDay + ' Days, ' + totalHour +' Hours, '+ totalMin +' Minutes, '+ totalSec +' Seconds!</span>';
	setTimeout("iCounter()",1000);
  } 
 
 

