function show_object ( id )
{
	var obj = window.document.getElementById ( id );
	obj.style.display = '';
}

function hide_object ( id )
{
	var obj = window.document.getElementById ( id );
	obj.style.display = 'none';
}
