var lineName;

window.onload = function ()
{
	if (location.hash == '' || location.hash == null) return;
show(location.hash.substring(1));
}

function show (name) {

if (location.href.indexOf('clients_list.shtml') == -1 )
	{
	// location.href = '/projects/clients_list.shtml#' + name;
	// return;
	}


	if(document.layers != null) return;

	var e = document.getElementById(name);

if (e == null) return;

if (e.style.display == 'none')
{
if (lineName != null)
{
var o = document.getElementById(lineName);
o.style.display = 'none';
}

e.style.display = 'block';
lineName = name;
}
else
{
e.style.display = 'none';
lineName = null;
	}

location.hash = '#a_' + name;
}

function hide (name) {

if(document.layers != null) return;

var e = document.getElementById(name);

e.style.display = 'none';
}