﻿function openGenericWin(fileName, filePath, w, h) {
    var x = screen.width / 2 - 120;
    var y = screen.height / 2 - 120;
    var datamin = ''
    DocAllegato = window.open(filePath, fileName, 'top=' + y + ',left=' + x + ',width=' + w + ',height=' + h + ',scrollbars=yes,toolbar=no')
}
function openDettFoto(fileName, filePath, w, h) {
    var x = screen.width / 2 - 120;
    var y = screen.height / 2 - 120;
    var datamin = ''
    DocAllegato = window.open(filePath, fileName, 'top=' + y + ',left=' + x + ',width=' + w + ',height=' + h + ',scrollbars=yes,toolbar=no,resizable=yes')
} 

function getIndirizzo(objList, objTextID) {
    var objText = document.getElementById(objTextID);
    var chosenoption = objList.options[objList.selectedIndex]
    objText.value = chosenoption.value;
    //objList.options.length = 0;
    objList.style.display = "none";

}



function SystemPrintPreview(OLECMDID) {
/****************************************************************
    NOTA BENE: devono essere abilitati gli ActiveX sul browser!!!
******************************************************************/
    //var OLECMDID = 10; 
    /* OLECMDID values: 
    * 6 - print 
    * 7 - print preview 
    * 8 - page setup (for printing) 
    * 1 - open window 
    * 4 - Save As 
    * 10 - properties 
    */
    try {
        var PROMPT = 1; // 1 PROMPT & 2 DONT PROMPT USER 
        var oWebBrowser = document.getElementById("WebBrowser1");
        if (oWebBrowser == null) {
            var sWebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
            document.body.insertAdjacentHTML('beforeEnd', sWebBrowser);
            oWebBrowser = document.getElementById("WebBrowser1");
            //WebBrowser1.outerHTML = ""; 
        }
        oWebBrowser.ExecWB(OLECMDID, PROMPT);
    }
    catch (e) {
        alert("Printing failed! " + e.message);
    }
}
