Index: lams_tool_images/web/includes/javascript/imageGallerycommon.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_images/web/includes/javascript/imageGallerycommon.js,v diff -u -r1.1.12.1 -r1.1.12.2 --- lams_tool_images/web/includes/javascript/imageGallerycommon.js 13 Apr 2015 18:18:03 -0000 1.1.12.1 +++ lams_tool_images/web/includes/javascript/imageGallerycommon.js 12 May 2016 09:54:34 -0000 1.1.12.2 @@ -1,8 +1,27 @@ +/** + * Launches the popup window for the instruction files + */ +function showMessage(url) { + $("#reourceInputArea").load(url, function() { + var area=document.getElementById("reourceInputArea"); + if (area != null) { + area.style.width="100%"; + area.style.height="100%"; + area.style.display="block"; + } + var elem = document.getElementById("saveCancelButtons"); + if (elem != null) { + elem.style.display="none"; + } + }); +} + function showBusy(targetDiv){ if($(targetDiv+"_Busy") != null){ document.getElementById(targetDiv+"_Busy").style.display = ''; } } + function hideBusy(targetDiv){ if($(targetDiv+"_Busy") != null){ document.getElementById(targetDiv+"_Busy").style.display = 'none';