var showHide = function(target) {
	var parentListElement = target.parentNode;
	var listTarget = parentListElement.getElementsByTagName("ul")[0];
	var cssDisplay = listTarget.style.display;

	inactivateAllUls(parentListElement.parentNode);

	if (cssDisplay == "none" || empty(cssDisplay)) listTarget.style.display = "block";
	else listTarget.style.display = "none";
	return false;
}

var inactivateAllUls = function(target) {
	var uls = target.getElementsByTagName("ul");
	for(var i=0; i<uls.length; i++)
		uls[i].style.display = 'none';
}

var mountCountrySWF = function(section) {
	actualSection = section;
	loadSwf('countrySWF','swf/ufs.swf',292,281);
	$('country').style.display = 'block';
};

var getEstado = function(uf) {
	var rep = new Ajax('ufData', 'getEstado.php?uf='+ uf +'&section='+ actualSection);
};
