﻿function TreeRun(img1,img2, inc)
{
	if (img2.style.display=='none')
	{
		img1.style.display='none';
		img2.style.display='block';
		inc.style.display='block';
	}
	else
	{
		img1.style.display='block';
		img2.style.display='none';
		inc.style.display='none';
	}
	return true;
}
var flag=0;

function load(location)
{ 
	return image; 
} 
function link(obj,b){
 var id=obj.id+""
// alert(eval(id+"_1.style"))
 if (b)
 {
   eval("document.all."+id+"_1.style.display='none'")
   eval("document.all."+id+"_2.style.display='block'")
   eval("document.all."+id+"_3.style.background='none'")
 }
 else
 {
   eval("document.all."+id+"_1.style.display='block'")
   eval("document.all."+id+"_2.style.display='none'")
   eval("document.all."+id+"_3.style.background='url(images/menu_top_bg.gif)'")
 }
}
function init() {
	/*íåôèã íàñ îòêðûâàòü âî ôðåéìå*/
	if (self.parent.frames.length != 0) {
		self.parent.location = document.location;
	} 
	/*Äëÿ îáðàáîòêè ãîðÿ÷èõ êíîïîê*/
	if (document.getElementById) {
		document.onkeydown = register;
	}
}
function register(e) {
	var code;
	if (!e) var e = window.event;
	if (e.keyCode) code = e.keyCode;
	else if (e.which) code = e.which;
		if (!PagerIsActive) {
		/*Ïåðâàÿ ñòðàíèöà (êëàâèøà Home)*/
		if ((code == 36) && (e.ctrlKey == true)) {
			var destination = document.getElementById('page_first');
			if (destination) {
				location.href = destination.href;
			}
		}
		/*Ïðåäûäóùàÿ ñòðàíèöà (êëàâèøà íàëåâî)*/
		if ((code == 37) && (e.ctrlKey == true)) {
			var destination = document.getElementById('page_prev');
			if (destination) {
				location.href = destination.href;
			}
		}
		/*Ñëåäóþùàÿ ñòðàíèöà (êëàâèøà íàïðàâî)*/
		if ((code == 39) && (e.ctrlKey == true)) {
			var destination = document.getElementById('page_next');
			if (destination) {
				location.href = destination.href;
			}	
		}
		/*Ñëåäóþùèå ñòðàíèöû (êëàâèøà PgDw èëè êëàâèøà âíèç)*/
		if ((code == 34 || code == 40) && (e.ctrlKey == true)) {
			var destination = document.getElementById('page_nexts');
			if (destination) {
				location.href = destination.href;
			}
		}
		/*Ñëåäóþùèå ñòðàíèöû (êëàâèøà PgUp èëè êëàâèøà ââåðõ)*/
		if ((code == 33 || code == 38) && (e.ctrlKey == true)) {
			var destination = document.getElementById('page_prevs');
			if (destination) {
				location.href = destination.href;
			}
		}
		/*Ñëåäóþùèå ñòðàíèöû (êëàâèøà End)*/
		if ((code == 35) && e.ctrlKey == true) {
			var destination = document.getElementById('page_last');
			if (destination) {
				location.href = destination.href;
			}
		}
	}
}

// Исправление косяка при выведении публикации
function CorrectionPublic()
{
	var TrueImg;
	var Width;
	var WidthTab;

	try
	{
		TrueImg = document.getElementById('PageCenter1_ctl00_TNewsRec1_Pics').href;
			
		Width = document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
		WidthTab = Width - (400 + 200);
		document.getElementById('DopLinks').width = WidthTab + 'px;';
	}catch(e)
	{
		return;	
	}
}
