<!--
msgNr = 0;
flashTm = 3000;
function promptMe()
{
  if (navigator.appName.substring(0,9) == "Microsoft"){
	if (msgNr == 0) {
		document.all.menu.style.visibility="hidden";
		document.all.logging.style.visibility="visible";
	}
	if (msgNr == 1) {
		document.all.logging.style.visibility="hidden";
		document.all.logged.style.visibility="visible";
	}
	if (msgNr == 2) {
		document.all.logged.style.visibility="hidden";
		document.all.menu.style.visibility="visible";
	}
		if (msgNr < 2)
{msgNr = msgNr + 1;setTimeout("promptMe();",flashTm);}
else
{msgNr = 0;
if (flashTm > 100)
{flashTm = flashTm * 0.7;}
	}

  }
}
function getHourOfDay()
{	   var now = new Date();
		return(now.getHours());
}

function getTime()
{var now = new Date();
		var minutes = now.getMinutes();
		var divider = ":";

		if (minutes<10)
				divider = ":0";
		if (navigator.appVersion.lastIndexOf('3.') != -1 &&
				navigator.appName.lastIndexOf('Netscape') != -1)
						return( now.getHours()-1 + divider + minutes );
		return( now.getHours() + divider + minutes );
}

function sayHello ()
{document.write();
		if(getHourOfDay()<5 || getHourOfDay()>22)
				document.write('&#x0414;&#x043E;&#x0431;&#x0440;&#x043E;&#x0439; &#x043D;&#x043E;&#x0447;&#x0438;!');
		else
		{
				if ( getHourOfDay() < 11)
				{document.write('&#x0414;&#x043E;&#x0431;&#x0440;&#x043E;&#x0435; &#x0443;&#x0442;&#x0440;&#x043E;!');}
				
		else
                if ( getHourOfDay() < 17)
				{document.write('&#x0414;&#x043E;&#x0431;&#x0440;&#x044B;&#x0439; &#x0434;&#x0435;&#x043D;&#x044C;!');}

				else
				{document.write('&#x0414;&#x043E;&#x0431;&#x0440;&#x044B;&#x0439; &#x0432;&#x0435;&#x0447;&#x0435;&#x0440;!');}
		}
}
// -->
