function ModuleAssistenzaClienti() {   
    ModalPopups.Custom("ModuleAC",
        "Assistenza Clienti",
        "<div id='ContainerModuleAC'></div>",
        {
            width: 570,
            height: 400,
            buttons: "cancel",
            cancelButtonText: "Chiudi",
            onCancel: "ModuleACCancel()"
        }
    );    
    var cframeModuleAC = document.createElement("IFRAME");
    cframeModuleAC.id = "frameModuleAC";
    cframeModuleAC.src = "https://servizi.unipolgf.it/UGAForm/ugf_contattiAssistenza_form.aspx";
    cframeModuleAC.frameBorder = 1;
    cframeModuleAC.scrolling = "yes";
    cframeModuleAC.marginWidth = 0;
    cframeModuleAC.marginHeight = 0;
    cframeModuleAC.width = "100%";
    cframeModuleAC.height = "99%";
	document.getElementById("ContainerModuleAC").appendChild(cframeModuleAC);
}

function ModuleACCancel() {        
    ModalPopups.Cancel("ModuleAC");
}

function ModuleReclamiClienti() {     
    ModalPopups.Custom("ModuleRC",
        "Reclami",
        "<div id='ContainerModuleRC'></div>",
        {
            width: 570,
            height: 400,
            buttons: "cancel",
            cancelButtonText: "Chiudi",
            onCancel: "ModuleRCCancel()"
        }
    );    
    var cframeModuleRC = document.createElement("IFRAME");
    cframeModuleRC.id = "frameModuleRC";
    cframeModuleRC.src = "https://servizi.unipolgf.it/UGAForm/ugf_contattiReclami_form.aspx";
    cframeModuleRC.frameBorder = 1;
    cframeModuleRC.scrolling = "yes";
    cframeModuleRC.marginWidth = 0;
    cframeModuleRC.marginHeight = 0;
    cframeModuleRC.width = "100%";
    cframeModuleRC.height = "99%";
	document.getElementById("ContainerModuleRC").appendChild(cframeModuleRC);
}

function ModuleRCCancel() {        
    ModalPopups.Cancel("ModuleRC");       
}

function ModuleCommissariAvaria() {    
    ModalPopups.Custom("ModuleCA",
        "Claim Agents / Commissari Avaria in tutto il mondo",
        "<div id='ContainerModuleCA'></div>",
        {
            width: 570,
            height: 400,
            buttons: "cancel",
            cancelButtonText: "Chiudi",
            onCancel: "ModuleCACancel()"
        }
    );    
    var cframeModuleCA = document.createElement("IFRAME");
    cframeModuleCA.id = "frameModuleCA";
    cframeModuleCA.src = "https://servizi.unipolgf.it/UGAForm/ugf_commissariavaria_form.aspx";
    cframeModuleCA.frameBorder = 1;
    cframeModuleCA.scrolling = "yes";
    cframeModuleCA.marginWidth = 0;
    cframeModuleCA.marginHeight = 0;
    cframeModuleCA.width = "100%";
    cframeModuleCA.height = "99%";
	document.getElementById("ContainerModuleCA").appendChild(cframeModuleCA);
}

function ModuleCACancel() {        
    ModalPopups.Cancel("ModuleCA");
}

function ModulePeritiImbarcazioni() {    
    ModalPopups.Custom("ModulePI",
        "Periti Ramo Trasporti Imbarcazioni",
        "<div id='ContainerModulePI'></div>",
        {
            width: 570,
            height: 400,
            buttons: "cancel",
            cancelButtonText: "Chiudi",
            onCancel: "ModulePICancel()"
        }
    );    
    var cframeModulePI = document.createElement("IFRAME");
    cframeModulePI.id = "frameModulePI";
    cframeModulePI.src = "https://servizi.unipolgf.it/UGAForm/ugf_peritiimbarcazioni_form.aspx";
    cframeModulePI.frameBorder = 1;
    cframeModulePI.scrolling = "yes";
    cframeModulePI.marginWidth = 0;
    cframeModulePI.marginHeight = 0;
    cframeModulePI.width = "100%";
    cframeModulePI.height = "99%";
	document.getElementById("ContainerModulePI").appendChild(cframeModulePI);
}

function ModulePICancel() {        
    ModalPopups.Cancel("ModulePI");
}


function ModulePeritiMerci() {    
    ModalPopups.Custom("ModulePM",
        "Periti Ramo Trasporti Merci in Italia",
        "<div id='ContainerModulePM'></div>",
        {
            width: 570,
            height: 400,
            buttons: "cancel",
            cancelButtonText: "Chiudi",
            onCancel: "ModulePMCancel()"
        }
    );    
    var cframeModulePM = document.createElement("IFRAME");
    cframeModulePM.id = "frameModulePI";
    cframeModulePM.src = "https://servizi.unipolgf.it/UGAForm/ugf_peritimerci_form.aspx";
    cframeModulePM.frameBorder = 1;
    cframeModulePM.scrolling = "yes";
    cframeModulePM.marginWidth = 0;
    cframeModulePM.marginHeight = 0;
    cframeModulePM.width = "100%";
    cframeModulePM.height = "99%";
	document.getElementById("ContainerModulePM").appendChild(cframeModulePM);
}

function ModulePMCancel() {        
    ModalPopups.Cancel("ModulePM");
}



function winPopup(page, left, top, width, height) { 
	var __wpopup = window.open(page, "__wpopup", "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height); __wpopup.focus(); 
}