<!--

  var count = 11;
  var cdLayer;
  var days, hours, mins, secs, timeRemaining;
  var isIE4, isIE5, isNS6
  function determineBrowser()
  {
    isIE4 = (document.all && !document.getElementById) ? true : false;
    isIE5 = (document.all && document.getElementById) ? true : false;
    isNS6 = (!document.all && document.getElementById) ? true : false;
  }


  function toSt(n)
  {
    s = "";
    if (n < 10)
	{
	  s += "0";
	}

	return s + n.toString();
  }

  
  function countdown()
  {
    determineBrowser();

    timeRemaining = "";
    d = new Date();
    count = Math.floor((eventdate.getTime()-d.getTime())/1000);

    if(count <= 0)
    {
      days = "0";
      hours = "0";
      mins = "0";
      secs = "0";
      timeRemaining = "Гран При проходит прямо сейчас!";	

	  if (isIE5)
	  {
        cdLayer = document.all["countdown"];
        cdLayer.innerHTML = timeRemaining;
      }
      else if (isIE4 || isNS6)
      {
        cdLayer = document.getElementById("countdown");
        cdLayer.innerHTML = timeRemaining;
      }

	  return;
    }

    secs = toSt(count%60);
    count = Math.floor(count/60);
    mins = toSt(count%60)
    count = Math.floor(count/60);
    hours = toSt(count%24);
    count = Math.floor(count/24);
    days = count;

	timeRemaining = days + " дней " + hours + " часов " + mins + " минут " + secs + " секунд";	

	if (isIE5)
	{
      cdLayer = document.all["countdown"];
      cdLayer.innerHTML = timeRemaining;
	}
	else if (isIE4 || isNS6)
	{
      cdLayer = document.getElementById("countdown");
      cdLayer.innerHTML = timeRemaining;
	}
	
	id = window.setTimeout("countdown()", 500); 
  }	
// -->
