function woj_over(woj)
{
  try
  {
    document.getElementById("l_" + woj).className = "woj_link_on";
  }
  catch (error) {}
}


function woj_out(woj)
{
  try
  {
    document.getElementById("l_" + woj).className = "";
  }
  catch (error) {}
}


function woj(w)
{
  try
  {
    wojewodztwa = document.getElementById("lista_woj").childNodes;
					
    for (i = 0; i < wojewodztwa.length; i++) 
    {
      if (wojewodztwa[i].className == 'tresc' && wojewodztwa[i].style.display != "none") 
	    wojewodztwa[i].style.display = "none";
    }
	
    document.getElementById("woj_" + w).style.display = "block";
  
    return false;
  }
  catch (error)
  {
    return true;
  }
}
