<!--
/*       Copyright (C) Dynamica S.r.l. 2008.

         Le informazioni, il formato e la sintassi di questo modulo
         sono  di proprieta' della  Dynamica S.r.l. che ne conserva
         tutti i diritti ai sensi della corrente normativa Italiana
         sul diritto d'autore.
         La  Dynamica  S.r.l.  non  si  fa carico  di  anomalie  da
         malfunzionamento dei propri programmi dovute a alterazioni
         e/o aggiunte apportate a questo file.

         The information in this file is provided for the exclusive use of
         the licensees of Dynamica s.r.l..  Such users have the
         right to use and  modify this code provided that it is used
         exclusively with Dynamica's products and for purposes authorized
         by the license agreement provided they include this notice and
         the associated copyright notice with any such product.
         The information in this file is provided "AS IS" without warranty.

         Dynamica S.r.l. Milano, 2008.
*/

function dyna_menu2() {
   return;
   }

function menu_blind_DD(element,menu_elemento,menu_col_but) {
   if (menu_elemento[element] == 1){
      menu_elemento[element] = 0;
      document.getElementById(element).style.display = 'none';
      blk = 'menuBlk_'+element;
      document.getElementById(blk).style.background = menu_col_but;
      return;
      }
   for(var val in menu_elemento) {
      if (menu_elemento[val] == 1 && val != element) {
         document.getElementById(val).style.display = 'none';
         blk = 'menuBlk_'+val;
         document.getElementById(blk).style.background = menu_col_but;
         menu_elemento[val] = 0;
         }
      }
   if (menu_elemento[element] != 1){
      menu_elemento[element] = 1;
      document.getElementById(element).style.display = 'block';
      }
   }

function menu_blind_DDD(element,menu_s_elemento,menu_col_but2) {
   if (menu_s_elemento[element] == 1){
      menu_s_elemento[element] = 0;
      document.getElementById(element).style.display = 'none';
      blk = 'menuBlk2_'+element;
      document.getElementById(blk).style.background = menu_col_but2;
      return;
      }
   for(var val in menu_s_elemento) {
      if (menu_s_elemento[val] == 1 && val != element) {
         document.getElementById(val).style.display = 'none';
         blk = 'menuBlk2_'+val;
         document.getElementById(blk).style.background = menu_col_but2;
         menu_s_elemento[val] = 0;
         }
      }
   if (menu_s_elemento[element] != 1){
      menu_s_elemento[element] = 1;
      document.getElementById(element).style.display = 'block';
      }
   }


//-->

