	function montre(pere, id) {
		var d = document.getElementById(id);
		var pos = document.getElementById(pere).style.left;
		if (d) { d.style.left=pos;}
	}
	
	function cache(id) {
		var d = document.getElementById(id);
		if (d) { d.style.left="-999em"; }
	}

	function change_color(id, color) {
		document.getElementById(id).style.background = color;
	}
	function change_border(id, color) {
		document.getElementById(id).style.borderColor = color;
	}