function ApriFinestra(Url, Wid, Hei)
{
	window.open (Url, '02BioplasticadiMais', 'toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+Wid+',height='+Hei);
}
function ApriAreaRiservata() {

    w = screen.width * 70 / 100;
    h = screen.height * 70 / 100;
    if (w < 800)
        w = 800;
    if (h < 600)
        h = 600;
    windowType = "resizable,location='0',menubar='0',status,toolbar='0',top=1,left=1,width=" + w + ",height=" + h + " ";
    view = window.open("http://85.35.216.140/start.html", "_blank", windowType);
    // return false;
}
function ApriSchedaTecnica(idp, lng, title) {
    if (title == null) title = "";
    var sUrl = "/Inclusioni/Dettaglio/PopupSchedeTecniche.aspx?IDP=" + idp + "&LNG=" + lng;
    var sHtml = "Loading, please wait...";
    apriPopUp(sUrl, sHtml, title, '#modal-popup');
}

$(function() {
    $('#modal-popup').dialog({
        autoOpen: false,
        width: 600,
        modal: true,
        draggable: false,
        resizable: false,
        dialogClass: 'diagPopup'
    });
});

function recuperaHtml(source) {
    var strIni = "<!--#JSIncludeStart-->";
    var strEnd = "<!--#JSIncludeEnd-->";
    var idxIni = source.indexOf(strIni) + strIni.length;
    var idxEnd = source.indexOf(strEnd) - 1;
    return source.substring(idxIni, idxEnd);
}

function apriPopUp(sUrl, sHtml, sTitle, dialogDivId) {
    //bottoneChiudi[SBJS_btnChiudiTxt] = function() { $(dialogDivId).dialog("close"); }
    if ($(dialogDivId).dialog('isOpen')) { $(dialogDivId).dialog('close'); }
    $(dialogDivId).dialog('option', 'title', sTitle);
    //$(dialogDivId).dialog('option', 'buttons', bottoneChiudi);
    $(dialogDivId).html(sHtml);
    $(dialogDivId).dialog('open');

    $.ajax({
        url: sUrl,
        cache: false,
        success: function(html) {
            var txt = recuperaHtml(html);
            $(dialogDivId).html(txt);
        }
    });
}
