Index: lams_tool_images/web/includes/javascript/imageGallerycommon.js =================================================================== diff -u -rf3be94729c90c7390a6aea11d1886a4b72d96670 -r60ab803bf843562083cfb66764ddfcb3b0a83841 --- lams_tool_images/web/includes/javascript/imageGallerycommon.js (.../imageGallerycommon.js) (revision f3be94729c90c7390a6aea11d1886a4b72d96670) +++ lams_tool_images/web/includes/javascript/imageGallerycommon.js (.../imageGallerycommon.js) (revision 60ab803bf843562083cfb66764ddfcb3b0a83841) @@ -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';