var xmas = new Date();
document.write(xmas.getHours());
document.write(":");
min = xmas.getMinutes(); 
if (min<10)
minutki = "0" + min;
else
minutki = min; 
document.write(minutki);
