diff --git a/functions.js b/functions.js
index 684fdcf9..092674c3 100644
--- a/functions.js
+++ b/functions.js
@@ -13,6 +13,22 @@ function check_version(version) {
document.body.appendChild(script);
}
+function load_jush() {
+ var script = document.createElement('script');
+ script.src = 'externals/jush/jush.js';
+ script.onload = function () {
+ jush.style('externals/jush/jush.css');
+ jush.highlight_tag('pre');
+ jush.highlight_tag('code');
+ }
+ script.onreadystatechange = function () {
+ if (script.readyState == 'loaded' || script.readyState == 'complete') {
+ script.onload();
+ }
+ }
+ document.body.appendChild(script);
+}
+
function tables_check(el) {
var elems = el.form.elements;
for (var i=0; i < elems.length; i++) {
diff --git a/include/design.inc.php b/include/design.inc.php
index 0e208d6e..22c792e8 100644
--- a/include/design.inc.php
+++ b/include/design.inc.php
@@ -106,15 +106,8 @@ function page_footer($missing = false) {
?>
-
-
-
+
+