function make_hidden(obj) {

	obj = document.getElementById(obj);
	obj.style.visibility = 'hidden';
	obj.style.top = '-500px';

	return true;

} // end function make_hidden