function dotime(dd,hh,mm,ss,UniqId){ 
    setTimeout(function(){dotime(dd,hh,mm,ss,UniqId)},1000);
    
    dy= dd+100;
    hr= hh+100;
    mn= mm+100;
    se= ss+100;
    
    tot=''+dy+hr+mn+se;
	
    if (dd > 0) {
        $(UniqId+'timer-dd1').style.display = "";
        $(UniqId+'timer-dd2').style.display = "";
        $(UniqId+'timer-dd').style.display = "";
        $(UniqId+'timer-days').style.display = "";
        
        $(UniqId+'timer-ss1').style.display = "none";
        $(UniqId+'timer-ss2').style.display = "none";
        $(UniqId+'timer-mm').style.display = "none";
        $(UniqId+'timer-secs').style.display = "none";
        
		
		var image1 = "url("+SKIN_URL+"images/timer/" + "digit" + tot.substring(1,2) + ".png" + ")"; 
		$(UniqId+'timer-dd1').style.backgroundImage = image1;
		
		var image2 = "url("+SKIN_URL+"images/timer/" + "digit" + tot.substring(2,3) + ".png" + ")"; 
		$(UniqId+'timer-dd2').style.backgroundImage = image2;

		var image3 = "url("+SKIN_URL+"images/timer/" + "digit_small_" + tot.substring(7,8) + ".png" + ")"; 
		$(UniqId+'timer-mm1').style.backgroundImage = image3;
		
		var image4 = "url("+SKIN_URL+"images/timer/" + "digit_small_" + tot.substring(8,9) + ".png" + ")"; 
			        $(UniqId+'timer-mm2').style.backgroundImage = image4;
					
    } else {
        $(UniqId+'timer-dd1').style.display = "none";
        $(UniqId+'timer-dd2').style.display = "none";
        $(UniqId+'timer-dd').style.display = "none";
        $(UniqId+'timer-days').style.display = "none";
        
        $(UniqId+'timer-ss1').style.display = "";
        $(UniqId+'timer-ss2').style.display = "";
        $(UniqId+'timer-mm').style.display = "";
        $(UniqId+'timer-secs').style.display = "";
        
	    	
		var image7 = "url("+SKIN_URL+"images/timer/" + "digit" + tot.substring(7,8) + ".png" + ")"; 
		$(UniqId+'timer-mm1').style.width = "21" + "px";
  		$(UniqId+'timer-mm1').style.backgroundImage = image7;
					
		var image8 = "url("+SKIN_URL+"images/timer/" + "digit" + tot.substring(8,9) + ".png" + ")"; 
	    $(UniqId+'timer-mm2').style.width = "21" + "px";
		$(UniqId+'timer-mm2').style.backgroundImage = image8;
		
		var image9 = "url("+SKIN_URL+"images/timer/" + "digit_small_" + tot.substring(10,11) + ".png" + ")"; 
  		$(UniqId+'timer-ss1').style.backgroundImage = image9;
					
		var image10 = "url("+SKIN_URL+"images/timer/" + "digit_small_" + tot.substring(11,12) + ".png" + ")"; 
		$(UniqId+'timer-ss2').style.backgroundImage = image10;		
		
		$(UniqId+'timer-mins').style.width = "50" + "px";
		
    }
	
	var image5 = "url("+SKIN_URL+"images/timer/" + "digit" + tot.substring(4,5) + ".png" + ")"; 
	$(UniqId+'timer-hh1').style.backgroundImage = image5;
	
	var image6 = "url("+SKIN_URL+"images/timer/" + "digit" + tot.substring(5,6) + ".png" + ")"; 
	$(UniqId+'timer-hh2').style.backgroundImage = image6;					
    
    ss--;
    if (ss < 0) {
        ss = 59;
        mm--;
    }
    if (mm < 0) {
        mm = 59;
        hh--;
    }
    if (hh < 0) {
        hh = 23;
        dd--;
    }
}

