function show_data_sitemap(sec_id,cat_id) {
	if (document.getElementById('subCats_'+ sec_id+'_'+cat_id))  {
		document.getElementById('subCats_'+ sec_id+'_'+cat_id).style.display="block";
		document.getElementById('plusMin_'+ sec_id+'_'+cat_id).innerHTML = "-";
	}
}

function hide_data_sitemap(sec_id,cat_id) {
	if (document.getElementById('subCats_'+ sec_id+'_'+cat_id)) {
		document.getElementById('subCats_'+ sec_id+'_'+cat_id).style.display="none";		
		document.getElementById('plusMin_'+ sec_id+'_'+cat_id).innerHTML = "+";
	}
}

function toggle_data_sitemap(sec_id,cat_id) 
	{
	thisDiv = document.getElementById('subCats_'+ sec_id+'_'+cat_id);
	if (thisDiv)
		if (thisDiv.style.display == "none") show_data_sitemap(sec_id,cat_id);
		else hide_data_sitemap(sec_id,cat_id);
	}

function toggle_subsection_sitemap(sec_id,cat_id) { toggle_data_sitemap(sec_id,cat_id); }

function submitForm() {
	document.loginform_logout_sm.submit()
}
