function stil(stil)
	{
	stil.style.color="black";
	}
function stil2(stil)
	{
	stil.style.color="#564B2A";
	}

function parselink(link)
	{
	document.location.href = link;
	}

function level(sub2)
{
  if (sub2 != undefined)
     {
       sub2 = 'sh_'+sub2
       if (document.all.tags("DIV")(sub2).style.display == "block")
	{
	   document.all.tags("DIV")(sub2).style.display = "none";
	} 
       else
        {
	 document.all.tags("DIV")(sub2).style.display = "block";  
        }
     }

}


function level_show(sub2)
{
  if (sub2 != undefined)
     {
       sub2 = 'sh_'+sub2
	 document.all.tags("DIV")(sub2).style.display = "block";  
     }
}

function show_all()
{
var broj = document.all.tags("DIV").length
for (var j=0;j<=broj-1;j++)
	{
	document.all.tags("DIV")(j).style.display = 'block';
	}
}

function hide_all()
{
var broj = document.all.tags("DIV").length
for (var j=0;j<=broj-1;j++)
	{
	var identifikacija = document.all.tags("DIV")(j).id
	if (identifikacija.substr(0,2) == "sh"){
	document.all.tags("DIV")(j).style.display = 'none';
	}
	}
}
