function start_all(){
        txt = document.forms.Temps11.servertime.value;
	if(txt.substring(0,1)=="0")
	  hh = parseInt(txt.substring(1,2));
	else
          hh = parseInt(txt.substring(0,2));
	
	if(txt.substring(3,4)=="0")
          mm = parseInt(txt.substring(4,5));
	else
	  mm = parseInt(txt.substring(3,5));
	  
        ss = parseInt(txt.substring(6,8));
        ss_all = (hh*60 + mm)*60 + ss;

        adate = new Date();
        lhh = adate.getHours();
        lmm = adate.getMinutes();
        lss = adate.getSeconds();
        ss_loc = (lhh*60 + lmm)*60 + lss;
        ss_off = ss_all - ss_loc;
        debuteTemps1(1000);
}

