function toggleLayer(id){
 var obj=document.getElementById(id);
 if(obj==null) {
	 	var obj='panel';
	 }
 if (this.obj&&this.obj!=obj){
  this.obj.style.display='none';
 }
 obj.style.display=obj.style.display!='block'?'block':'none';
 this.obj=obj;
}