function doLayer(){
var thisELem = document.getElementById('es');
 	if(thisELem.style.display == 'block'){
 		thisELem.style.display = 'none';
	}else{
 		thisELem.style.display = 'block';
	}
}
