function timeStart()
{
   var curuser=getCookie("asdcurrent");
	var time_name = "tm"+curuser;
   
   if (curuser != null)
   {
   	// Overall evaluation
      // Allow for multiple quizes
		var exp1 = dater(1095);
		
		if (!getCookie(time_name))
 	  		setCookie(time_name, '', exp1);
		
   	var global_count = getCrumb(time_name, "c");
   	
   	if (!global_count || global_count == "")
    	 global_count = 1;
      else
    	 global_count++;
   		
    var start = showCurrentStamp();
	 
	 setCrumb(time_name, global_count+"_s", start, exp1);     
    setCrumb(time_name, global_count+"_s_t", start, exp1); 
	 
    setCrumb(time_name, "c", global_count, exp1);
	}
}