function adding(id, wherego) {
if (document.getElementById(id).style.display == "none")
{document.getElementById(id).style.display = "block"; 
	if (wherego!== "") { location.href = '#' + wherego; }
}
else
{document.getElementById(id).style.display = "none";
	if (wherego!== "") { location.href = '#' + wherego; }
}
}
