function openTemplateDialogDisplayModule(title, templateName, isIFrame, enablePrint, showContentFromID, language) { if ($("#trv_module_dialog_template_display").length == 0) { blockScreen(); enablePrint = (enablePrint == null || enablePrint) ? 1:0; showContentFromID = showContentFromID == null? '':showContentFromID; isIFrame = (isIFrame == null || !isIFrame) ? 0:1; var position = getIFramePosition(isIFrame); language = (language == null || !language) ? 'nl':language; $("body").append(""); $("#trv_module_dialog_template_display").load("http://www.it-matchmaker.nl/core/modules/template_dialog_display/components/dialog_template_display.php?enablePrint="+enablePrint+"&isIFrame="+isIFrame+"&templateName="+encodeURI(templateName)+"&showContentFromID="+encodeURI(showContentFromID)+"&full_path=NVkzNENoeWMoUmQ1aGFGPUYzd0ZzdUE7LCgvKD4xekhkZTVDK0ZzRWhiNVdtQjA8PkMqZEI_KyA7JXA7PjN5VHomcUVXW1daUG8sM2Fjbn0,&app_language="+language+"&PHPSESSID=f928815ad35958c39f329e8c4adf271d").dialog({ close: function(event, ui) { shortcut.remove("Return"); if (enablePrint) { shortcut.remove("Alt+d"); } $(this).dialog('destroy'); $("#trv_module_dialog_template_display").remove(); }, closeOnEscape: true, resizable: false, position: position, minHeight: 500, height: 'auto', width: 622, modal: true, bgiframe: true, title: title }); } }