function showChild(id){
	document.getElementById(id).style.display = "block";
}

function hideChild(id){
	document.getElementById(id).style.display = "none";
}