function open_layer(id){
    document.getElementById(id).style.display="block";
	
    calque=this.document.createElement('div');calque.id="cache";
	this.document.body.appendChild(calque)
} 
function close_layer(id){
    document.getElementById(id).style.display="none";
}