//------------------------------------------------------------------------------
//                              -= OSI2I =-
//------------------------------------------------------------------------------
// Description:
//  Class javascript de gestion du paneau raccourcis
//
// Version:
//   15/06/2007 - RLA - V1.00
//    - Création du fichier
//------------------------------------------------------------------------------

var SHORTCUT_PANEL_TOP    = '90px';
var SHORTCUT_PANEL_LEFT   = '10px';
var SHORTCUT_PANEL_WIDTH  = '250px';

function shorcutsPanelBtn( divID, x, y ){
  elmt = getElement( divID );
  if ( !elmt ) return;
  elmt.style.left   = SHORTCUT_PANEL_LEFT;
  elmt.style.top    = SHORTCUT_PANEL_TOP;
  elmt.style.width  = SHORTCUT_PANEL_WIDTH;

  if ( elmt.style.visibility == 'visible' ){
    elmt.style.visibility = 'hidden';
  }else{
    elmt.style.visibility = 'visible';
  }
}







