var Aide = {
  code: "SOM01",
  
  ouvrir: function(){
    var url = APP_NAME + '/aide/aide.htm';
    var myLeft = getWidth() - 600;
    var options = 'status=no,fullscreen=no,resizable=yes,scrollbars=yes,width=530,height=600,left=' + myLeft + 'px,top=50';
    window.open(url + "?" + this.code, '_blank', options);
  }
};

function getWidth()
{
   if(document.documentElement && document.documentElement.clientWidth)
   {
      //IE 6+ in 'standards compliant mode'
      return document.documentElement.clientWidth;
   }
   else if( typeof(window.innerWidth) == 'number')
   {
      //Non-IE
      return window.innerWidth;
   }
   else if(document.body && document.body.clientWidth)
   {
      //IE 4 compatible
      return document.body.clientWidth;
   }
}
