﻿// JScript File
function ieExecWB( intOLEcmd, intOLEparam ) 
    {
        var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
        document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
        if (!intOLEparam || intOLEparam < -1 || intOLEparam > 1 ) 
        {
        intOLEparam = 1;
        }
        WebBrowser1.ExecWB( intOLEcmd, intOLEparam );
        WebBrowser1.outerHTML = "";
    };

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// fonction qui permet d'ouvrir la fenetre d'impression sur les pages de details
function openImpression(theURL,winName,features) { 
  window.open(theURL,winName,'scrollbars=yes,width=880,height=500');
}