// JavaScript Document
function dtopenbutton( /*int*/ n ) {
  /* button switch */
  ShowE("dopen"+n,false);
  ShowE("dclose"+n,true);
	}
function dtclosebutton( /*int*/ n ) {
  /* button switch */
  ShowE("dopen"+n,true);
  ShowE("dclose"+n,false);
}
function dtopentext( /*int*/ n ) {
  /* open */
  ShowE("testo"+n,true);    
}
function dtclosetext( /*int*/ n ) {
  /* close */
  ShowE("testo"+n,false);    
}
function dtopen( /*int*/ n ) {
	if (n!='-1')
	{
	  /* button switch */
	  ShowE("dopen"+n,false);
	  ShowE("dclose"+n,true);
	  
	  /* open */
	  ShowE("testo"+n,true);    
	}  
}
function dtclose( /*int*/ n ) {
  /* button switch */
  ShowE("dopen"+n,true);
  ShowE("dclose"+n,false);
  
  /* close */
  ShowE("testo"+n,false);    
}
