
window.onload = function() 
{
var currentTime = new Date();
var ut = Math.floor(currentTime.getTime() / 1000);
var date = new Date(ut * 1000);
var h = date.getHours();
var m = date.getMinutes();
const i=h+'_'+m;
var img = new Image();
var b2= document.getElementById("counter");

img.onload = function() 
{
var j= ("<aside id=\"liveinternet\">"
+
"<!--LiveInternet logo-->"
+
"<a href=\"https://www.liveinternet.ru/click\" target=\"_blank\">"
+
"<img src=\"https://aparta7.ru/logo/logo_"+i+".gif\" title=\"LiveInternet: показано число просмотров за 24 часа, посетителей за 24 часа и за сегодня\" "
+
"alt=\"\" border=\"0\" width=\"88\" height=\"31\"></a>"
+
"<!--/LiveInternet-->"
+
"</aside>");
b2.innerHTML =j;
b2.style.opacity=1;
}

img.onerror = function() 
{
b2.style.opacity=0;
}

img.src = "https://aparta7.ru/logo/logo_"+i+".gif";

};



