      document.timeForm.crewTime.value="000:00:00:00";

      function setNewTimeAgain2(){
      setNewTime2();
      }

      function setNewTime2(){
      now = new Date();
      launch = Date.parse("Fri, 10 Aug 2001 16:10:00 CDT");
      launch2 = Date.parse("Fri, 9 Mar 2001 03:24:00 CST");
      launch1 = Date.parse("Fri, 31 Oct 2000 01:53:00 CST");

      timeNow = now.getTime();
      if ( (launch - timeNow) >= 0)
	      timeLeft = launch - timeNow;
	    else
	      timeLeft = timeNow - launch;

      days = parseInt(timeLeft / 86400000);
      if (isNaN(days)) days = 0;

      timeLeft = parseInt(timeLeft % 86400000);
      hours = parseInt(timeLeft / 3600000);
      timeLeft = parseInt(timeLeft % 3600000);
      mins = parseInt(timeLeft / 60000);
      timeLeft = parseInt(timeLeft % 60000);
      secs = parseInt(timeLeft / 1000);

      d1 = parseInt(days / 10);
      if ( isNaN(d1))  d1 = 0;

      d2 = parseInt(days % 10);
      if ( isNaN(d2))  d2 = 0;

      h1 = parseInt(hours / 10);
      if ( isNaN(h1))  h1 = 0;

      h2 = parseInt(hours % 10);
      if ( isNaN(h2))  h2 = 0;

      m1 = parseInt(mins / 10);
      if ( isNaN(m1)) m1 = 0;

      m2 = parseInt(mins % 10);
      if ( isNaN(m2)) m2 = 0;

      s1 = parseInt(secs / 10);
      if ( isNaN(s1))  s1 = 0;

      s2 = parseInt(secs % 10);
      if ( isNaN(s2)) s2 = 0;

      document.timeForm.crewTime.value=" "+days+" Tage "+h1+h2+":"+m1+m2+":"+s1+s2+" h";
      setTimeout("setNewTimeAgain2()", 950);
      return;
      }

      setNewTime2();
