function open_date(month)
{
	var year = $F('for_year');
	
	window.location.href = "?y=" + year + '&m=' + month;
}

function open(what)
{
	var org = $('national_organs');
	var oblasti = $('oblasti');
	
	var tab_org = $('national_organs_tab');
	var tab_oblasti = $('oblasti_tab');
	
	if (what == 1)
	{
		org.style.display = "none";
		oblasti.style.display = "block";
		
		tab_org.className = "tabbed";
		tab_oblasti.className = "tabbed show";
	}
	else
	{
		org.style.display = "block";
		oblasti.style.display = "none";
		
		tab_org.className = "tabbed show";
		tab_oblasti.className = "tabbed";
	}
}

function open_organ(what)
{
	window.location.href = "?organ=" + what;
}

function open_region(what)
{
	window.location.href = "?region=" + what;
}