function display_structure(obj_id, obj) {
	var vis, cn;
	cn = obj.className;
	cn = (cn != "title_sel") ? "title_sel" : "title"; // переключаем стиль заголовка
	vis = document.getElementById(obj_id).style.display;
	vis = (vis != "block") ? "block" : "none"; // переключаем видимость блока
	obj.className = cn;
	document.getElementById(obj_id).style.display = vis;
}
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=750,height=625,top=100,left=100");
	popupWin.focus();
}
function getCurDate() {
	return (new Date()).getFullYear()+'-'+((1+((new Date()).getMonth()) < 10)?'0'+(1+(new Date()).getMonth()):(1+((new Date()).getMonth())))+'-'+(((new Date()).getDate() < 10)?'0'+((new Date()).getDate()):((new Date()).getDate()));
}




function quickanalyser(name,swf,id) {

	url = "/fileadmin/templates/pop/quickanalyser.html?name="+encodeURIComponent(name)+"&swf="+swf+"&id="+id;

	var popupWin = window.open(url, "quickanalyser", "frameborder=0,toolbar=0,location=1,directoties=0,status=0,menubar=0,resizable=0,width=750,height=625,top=100,left=100");

	popupWin.focus();
}
