if (window != top) top.location.href = location.href;


function ng() {
	var time = new Date();
	var month = time.getMonth() + 1;
	var minutes = time.getMinutes();
	if(month < 10) { var month = '0'+month; }
	if(minutes < 10) { var minutes = '0'+minutes; }

	document.write('<strong>'+time.getHours()+':'+minutes+'</strong>, &nbsp;'+time.getDate()+'.'+month+'.'+time.getFullYear());
}