/*
+--------------------------------------+
|   ÏÎÄÒÂÅÐÆÄÅÍÈÅ ÍÀ ÏÅÐÅÍÀÏÐÀÂËÅÍÈÅ   |
+--------------------------------------+
*/
function univ_confirm(theURL, text)
{
	if (confirm(text))
	{
		window.location.href=theURL;
	}
}


/*
+-------------------------------+
|   ÏÎÄÒÂÅÐÆÄÅÍÈÅ ÍÀ ÓÄÀËÅÍÈÅ   |
+-------------------------------+
*/
function delete_confirm(theURL)
{
	if (confirm( "Äåéñòâèòåëüíî óäàëèòü?" ))
	{
		window.location.href=theURL;
	}
}


/*
+-----------------------------+
|   ÏÎÊÀÇ ÔÎÐÌÛ ÀÂÒÎÐÈÇÀÖÈÈ   |
+-----------------------------+
*/
function showFormLogin()
{
	var f = document.forms['flogin'];
	if (document.getElementById && f)
	{
		document.getElementById('form_login').style.display = 'block';
		f.username.focus();
		return false;
	}
	else return true;
}

function hideFormLogin()
{
	if(document.getElementById('form_login')) document.getElementById('form_login').style.display = 'none';
	return false;
}

