	  enddate = new Date(2005,4,20,10,0,0);
	  
	  today = new Date();
	  total_s = enddate.getTime() - today.getTime();
	  total_s = total_s / 1000;
	  total_s = Math.ceil(total_s);
	  
	  shift_d = total_s / (24*60*60);
	  shift_d = Math.floor(shift_d) +1;
	  s = total_s - (shift_d * 24*60*60);
	  shift_h = s / (60*60);
	  shift_h = Math.floor(shift_h);
	  s = s-(shift_h * 60*60);
	  shift_m = s / 60;
	  shift_m = Math.floor(shift_m);
	  shift_s = s-(shift_m * 60);
	  
	  YY = enddate.getYear();
	  MM = enddate.getMonth();
	  MM = MM+1;
	  
	  if(MM < 10){
	    MM = '0'+MM;
	  }
	  DD = enddate.getDate();
	  if (DD < 10){
	    DD = '0' + DD;
	  }
	  HOUR = enddate.getHours();
	  if (HOUR <10){
	     HOUR ='0'+HOUR;
	  }
	  MIN = enddate.getMinutes();
	  if(MIN < 10){
	    MIN = '0'+MIN;
	  }
	  SEC = enddate.getSeconds();
	  if (SEC < 10){
	    SEC = '0' + SEC;
	  }

