function hideObj(item) {
	var obj = document.getElementById(item);
	obj.style.display = "none";
}

