function cacher(element)
{
	if (element != null) {
		element.style.display = 'none';
	}
}

function montrer(element)
{
	if (element != null) {
		element.style.display = '';
	}
}
