/*
Скрипты сайта ИГШ. (c) Р. А. Исмаилов, 1998-2006.
Версия 3.6
*/

if ( window.location.hostname == "stabes.nm.ru" || window.location.hostname == "okh.nm.ru" ||
	window.location.hostname == "www.stabes.nm.ru" || window.location.hostname == "www.okh.nm.ru") {
	new_URI = "http://www.igstab.ru" + window.location.pathname
	window.location.replace(new_URI)
}

function Check(i) {
//Проверка наличия комментария для нормра i 
  	name = "n" + i
	x = document.getElementById(name)
	return x  
}

function ConstructComments() {
//Замена простой ссылки на всплывающий комментарий и номер с верхним индексом.
  for (var i = 1; Check(i) != null; i++) {
   	x = Check(i)
	x.removeAttribute("href");
	x.setAttribute("class","under")
	var text = document.createTextNode(i)
	var elem_s = document.createElement("sup")
	var elem_a = document.createElement("a")
	elem_a.setAttribute("href","#d"+i)
	elem_a.setAttribute("name","u"+i)
	elem_s.appendChild(text)
	elem_a.appendChild(elem_s)
	x.appendChild(elem_a)
  }
//Установка подсказки для редиректора.
  ForumRedirect()
}

function Comment(number) {
//Открывает всплывающую подсказку
	var elem = document.getElementById('s'+number).cloneNode(true);
	elem.id="z"
	elem.style.position="absolute" 
	elem.style.right="5";
	elem.style.width="50%";
	if (getCookie("LINK")!="null") elem.style.backgroundColor = getCookie("text")
		else elem.style.backgroundColor = "white";
	if (getCookie("LINK")!="null") elem.style.color = getCookie("BGCOLOR")
		else elem.style.color = "black";

	elem.style.padding="3";
	document.getElementById("n"+number).appendChild(elem);
}

function CExit() {
//Закрывает всплывающую подсказку
	if (document.getElementById("z")) 
		document.getElementById("z").parentNode.removeChild(document.getElementById("z"))
}

function getCookie(name) {
//Получение кук цветового оформления
	var dc = document.cookie;
	var prefix = name + "=";
	var begin = dc.indexOf("; " + prefix);
	if (begin == -1) {
		begin = dc.indexOf(prefix);
		if (begin != 0) return "null";
	} else
		begin += 2;
	var end = document.cookie.indexOf(";", begin);
	if (end == -1)
		end = dc.length;
	return unescape(dc.substring(begin + prefix.length, end));
}

function ForumRedirect() {
//Добавление к подсказке имени файла.
	y = document.getElementById('rr')
	s = y.href
	y.removeAttribute("href");
	pathname = window.location.pathname
	var re = new RegExp("[A-Za-z0-9_]*\.htm$","i");
	TextName = pathname.match(re)
	y.setAttribute("href",s+'?'+TextName)
}

function SetBaseURL() {
//Base url for oldnews
	var base_link = document.createElement("BASE")
	base_link.setAttribute("href", "http://www.igstab.ru/News.htm")
	document.getElementsByTagName("HEAD")[0].appendChild(base_link)
}

function DoItAfter() {
	if (IamBlack()) {
		if (getCookie("LINK")!="null") document.body.setAttribute("link", getCookie("LINK"))
		if (getCookie("VLINK")!="null") document.body.setAttribute("vLink", getCookie("VLINK"))
		if (getCookie("BGCOLOR")!="null") document.body.setAttribute("bgColor", getCookie("BGCOLOR"))
		if (getCookie("text")!="null") document.body.setAttribute("text", getCookie("text"))
	}
	// favicon addition to every page
	var favicon_link = document.createElement("LINK")
	favicon_link.setAttribute("rel", "SHORTCUT ICON")
	favicon_link.setAttribute("href", "http://igstab.ru/favicon.ico")
	document.getElementsByTagName("HEAD")[0].appendChild(favicon_link)
}

function IamBlack() {
	//Определение ч-б варианта.
	pathname = window.location.pathname
	result = /\Wblack\W/.test(pathname)
	return !result
}
