function DefineBackground()
{
	if( !document.layers && screen.colorDepth > 8 ) {
		document.body.className = "highcolor";
	}
}

function DefineBodyStyle() 
{

	if( !document.layers ) {
		var itemNavigation = document.all.item('navigation');
		document.all.item('content').style.marginLeft =
									itemNavigation.clientWidth + 
									itemNavigation.offsetLeft;
	}
		
	DefineBackground();
}


function DisableSelfLinks() 
{
	for( var i=document.links.length; i--; ) {
		if( document.links[i].href == document.location.href ) {
			document.links[i].className = "current";
			document.links[i].onclick = new Function("return false;");
			if( !document.layers ) {
				document.links[i].insertAdjacentHTML("AfterBegin", "<b>&gt;</b>&nbsp;");
				document.links[i].insertAdjacentHTML("BeforeEnd", " &nbsp;<b>&lt;</b>");
			}
			document.links[i].title = "";
		}
	}
}


function MakeMenu() 
{
	document.write("<div id=\"navigation\">\
<P STYLE=\"margin-bottom: 2em; font-style: italic; font-size: 85%;\">\
<A HREF=\"..\" TITLE=\"Домашняя страничка автора\">на главную</A></P>\
<P><A HREF=\"english.html\" TITLE=\"For English speaking visitors\">English</A></P>\
<P><A HREF=\".\" TITLE=\"Dial-up server manager\">DialServ</A></P>\
<p><a href=\"Details.html\" title=\"Что такое Dial-up server manager? и с чем его едят?\">Подробности</a></p>\
<p><a href=\"manual.html\" title=\"формат командной строки\">Инструкция</a></p>\
<p><a href=\"download.html\" title=\"Download\">Скачать</a></p>\
<p><a href=\"developer.html\" title=\"Как сделать тоже самое в своей программе?\">Разработчику</a></p>\
<p><a href=\"serverok.html\" title=\"ServerOk\">&laquo;Конкурент&raquo;</a></p>\
<p><a href=\"contact.html\" title=\"e-mail\">Пишите мне</a></p></div>");

	DisableSelfLinks();
}

//	(C) 2000-2003 Алексей Курзенков (Aleksey Kurzenkov)
