function openInter(type)
{
	if (document.getElementById)
		if(type == 'on')
			document.getElementById("idd").style.visibility = "visible";
		else
			document.getElementById("idd").style.visibility = "hidden";
	return false;
}

function openCountry(name_c)
{
	document.getElementById(name_c).className = "country_tr_s";
}

function closeCountry(name_c)
{
	document.getElementById(name_c).className = "country_tr";
}