function $(el_id) {
	return(document.getElementById(el_id));
}

function display_structure(obj_id, obj) {
	var vis, cn;
	cn = obj.className;
	cn = (cn != "title_sel") ? "title_sel" : "title"; // переключаем стиль заголовка
	vis = $(obj_id).style.display;
	vis = (vis != "block") ? "block" : "none"; // переключаем видимость блока
	obj.className = cn;
	$(obj_id).style.display = vis;
}

var arr_div = document.getElementsByTagName("div");
var arr_a = document.getElementsByTagName("a");

function display_map(obj_id, obj) {
	if(obj) {
		for (var j = 0; j < arr_a.length; j++) {
			if(arr_a[j].className == "sel") arr_a[j].className = ""; // сбрасываем все ссылки
		}
		obj.className = "sel"; // выделяем нужную ссылку
	}

	for (var i = 0; i < arr_div.length; i++) {
		if(arr_div[i].className == "map") arr_div[i].style.display = "none"; // выключаем все блоки
	}
	$(obj_id).style.display = "block"; // включаем нужный блок
}

function open_map(url) {
	var popupWin = window.open(url, "gazprom_map", "frameborder=0,toolbar=0,location=0,directoties=0,status=0,menubar=0,resizable=0,width=680,height=480,top=100,left=100");
	popupWin.focus();
}
