function ShowOpenTreeCountry()
{

	i = 1;
	country_ids = '';
	while (i <= 4)
	{
		if (document.getElementById("main_tree_contry_" + i).value == 1)
		{
			country_ids = country_ids + i + '|';
		}

	i = i + 1;
	}

return country_ids
}

function MenuTree(country, curMenu, curCountry, lang) {
	if (document.getElementById('main_tree_contry_' + country).value == '1')
	{		document.getElementById('main_tree_contry_' + country).value = '0';	}
	else
	{		document.getElementById('main_tree_contry_' + country).value = '1';	}
	AjaxQuery = ShowOpenTreeCountry();

    JsHttpRequest.query(
        '../ajax/menutree.php',
        {
            'AjaxQuery': AjaxQuery,
            'curMenu': curMenu,
            'curCountry': curCountry,
            'lang': lang
        },

        function(result) {

            if (result) {
            	eval(result["javascript"]);
           }
        },
        false
    );
}