﻿function Get(IDobj)
{
	return document.getElementById(IDobj);
};

function Create(tagName, parent)
{
	var temp = document.createElement(tagName);
	if (parent != null)
		parent.appendChild(temp);
	return temp;
};

function ShowCountry(obj)
{
	HideAllCountries();
	//
	var divID = 'country_' + obj.value;
	//alert(divID);
	if(divID != null)
	{
		var divToShow = Get(divID);
		//
		if(divToShow != null)
			divToShow.style.display = '';
	}
}

function HideAllCountries()
{
	var container = Get('countriesData');
	//
	if(container != null)
	{
		var div = container.getElementsByTagName('DIV');
		//
		if (div.length != 0)
		{
			for(var i = 0; i < div.length; i++)
			{
				if (div[i].id.indexOf('country_') != -1)
					div[i].style.display = 'none';
			}
		}
	};
};
