//открыть окно с детальной информацией о сертификате
function openSertificateDetailsWindow (href) {
	var a = window.open(href, 'sertificateDetailsWindow', 'Toolbar=0,Location=0,Directories=0,Status=0,Menubar=0,Scrollbars=0,Resizable=1,Copyhistory=1,Width=420,Height=630,top=65,left=65');
	a.focus ();
	return false;
}

//по умолчанию ни один пункт меню не раскрыт
left_menu_opened_branch_id = null;

function visualizeLeftMenu (id) {
	if (id !== left_menu_opened_branch_id)
	{
		//закрываем предыдущий
		if (left_menu_opened_branch_id !== null)
		{
			document.getElementById(left_menu_opened_branch_id).style.display = 'none';
		}
		//открываем новый
		document.getElementById(id).style.display = '';
		left_menu_opened_branch_id = id;
	}
	return false;
}
