var speed=1000;
var tid = 0;
var monthes = ["января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря"];

function dodate()
{
  ndate = new Date();
  minutes = ndate.getMinutes();


  timstring = "сегодня: "+ ndate.getDate() + " " + monthes[ndate.getMonth()]+", "+ndate.getHours()+":"+((minutes<10)?"0"+minutes:minutes);
  document.getElementById("clock").innerHTML = timstring;
  tid=window.setTimeout("dodate()",speed);
}

function start() {
  tid=window.setTimeout("dodate()",speed);
}

function cleartid() {
  window.clearTimeout(tid);
}

function Clock()
{	clockid = document.getElementById("clock");
	start();
}