/* face legatura intre swf cu harta si pagina de Lista Distribuitori */

var judName = new Array("B","IF","DB","PH","IL","CL","GR","TR","AG","BZ","VN","GL","BR","TL","CT","BC","VS","NT","IS","SV","BT","HR","CV","BV","SB","MS","AB","BN","CJ","MM","SM","SJ","BH","AR","TM","HD","CS","GJ","MH","DJ","VL","OT");

function empty_page()
	{
		for (i = 0; i < judName.length; i++)
			{
				document.getElementById("jud_" + judName[i].toLowerCase()).style.display="none";
			}
	}

function full_page()
	{
		for (i = 0; i < judName.length; i++)
			{
				document.getElementById("jud_" + judName[i].toLowerCase()).style.display="inline";
			}
	}

function show_judet(jud)
	{
		empty_page();
		document.getElementById("jud_" + jud).style.display="inline";
	}