function closeInfoBox(cleanup) {
- if (Element.visible("infoBoxShadow")) {
- Element.hide("dialog_overlay");
- Element.hide("infoBoxShadow");
+ try {
+ enableHotkeys();
- if (cleanup) $("infoBoxShadow").innerHTML = " ";
+ if (Element.visible("infoBoxShadow")) {
+ Element.hide("dialog_overlay");
+ Element.hide("infoBoxShadow");
- enableHotkeys();
+ if (cleanup) $("infoBoxShadow").innerHTML = " ";
+ }
+ } catch (e) {
+ exception_error("closeInfoBox", e);
}
-
+
return false;
}