function show( target_object ){
	target_object.style.display = 'inline';
}

function hide( target_object ){
	target_object.style.display = 'none';
}