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) ? 'tr':language; $("body").append(""); $("#trv_module_dialog_template_display").load("http://www.it-matchmaker.com.tr/core/modules/template_dialog_display/components/dialog_template_display.php?enablePrint="+enablePrint+"&isIFrame="+isIFrame+"&templateName="+encodeURI(templateName)+"&showContentFromID="+encodeURI(showContentFromID)+"&full_path=NVkzNENoeWMoUmQ1aGFGPUZgcnRvelhISD0rPktLMG0sYzJEOmlZN3ktKj5kOW9WPG5KS1phRH5HQz5aemBzbnMpbl93QjRyViYrZEBiPVpHaig3&app_language="+language+"&PHPSESSID=642c845f5909d151b2dff862be942977").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 }); } }