function insertApecWidget(widgetUrl, widgetCode, width, height, paddingRight) {
  if (widgetCode == null) {
    document.write('Un code est obligatoire');
  } else {
    var iWidth = parseInt(width);
    var iPaddingRight = parseInt(paddingRight);
    var widthHtml = iWidth + iPaddingRight + 8;
    var iHeight = parseInt(height);
    var heightHtml = iHeight;
    var iframeUrl = widgetUrl + 'widget/code/' + widgetCode + '/width/' + width;
    var widgetHtmlCode = '<iframe allowTransparency=\"true\" ';
    widgetHtmlCode += 'id=\"' + widgetCode + '\" '
    widgetHtmlCode += 'style=\"height:' + heightHtml + 'px;width:' + widthHtml + 'px;background-color:transparent;padding:0px;\" '
    widgetHtmlCode += 'frameborder=\"0\" ';
    widgetHtmlCode += '></iframe>';
    document.write(widgetHtmlCode);
    document.getElementById(widgetCode).src = '' + iframeUrl + '';
  }
}
