<!--
function toggleLayer(id){
var obj=document.getElementById(id);
if (this.obj&&this.obj!=obj){
this.obj.style.visibility='hidden';
this.obj.style.display='none';
this.obj.style.height='0px';
this.obj.style.position='absolute';
}
obj.style.visibility=obj.style.visibility!='visible'?'visible':'hidden';
obj.style.display=obj.style.display!='block'?'block':'none';
obj.style.height=obj.style.height!='auto'?'auto':'0px';
obj.style.position=obj.style.position!='relative'?'relative':'absolute';
this.obj=obj;
}

/*DISPLAY and HEIGHT were added 10thMarch 2011 from previous script*/
//-->
