//Modal Iframe
function getModalIframe(title,src,width,height) {
    document.getElementById("dialog-modal-iframe").innerHTML = '<iframe name="iframemodal" id="iframemodal" src="'+ src  +'" width="100%" height="100%" frameBorder="0" scrolling="no"></iframe>';
    $("#dialog-modal-iframe").dialog({
        resizable: false,
        draggable: false,
        width:width,
        height:height,
        modal: true,
        title: title
    });
    
}

