
function initPopUp()
{
	var a = document.getElementById("countries");
	if (a)
	{
		a = a.getElementsByTagName("a");
		for (var i = 0; i<a.length; i++) {
			if (a[i].className.indexOf("show") != -1)
			{
				a[i].onclick = function()
				{
					if(typeof(LastNode) != "undefined")
						LastNode.style.display = "none";
					LastNode = this.parentNode.getElementsByTagName("div")[0];
					LastNode.style.display = "block";
				}
			}
			if (a[i].className.indexOf("remove") != -1)
			{
				a[i].onclick = function()
				{
					this.parentNode.parentNode.style.display = "none";
				}
			}
		}
	}
}
