Add a small tool for ajax wiki preview and use it on email/send and %grp/mail
[platal.git] / htdocs / javascript / xorg.js
index c89dd72..7fcd6f0 100644 (file)
@@ -42,7 +42,16 @@ function getNow() {
 }
 
 // }}}
-// {{{ Firefox
+// {{{ Search Engine
+
+function canAddSearchEngine()
+{
+  if (((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function"))
+      || ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function"))) {
+      return true;
+  }
+  return false;
+}
 
 function addSearchEngine()
 {
@@ -144,6 +153,9 @@ function auto_links() {
        if(node.className == 'popup2') {
         node.onclick = function () { popWin(this,840,600); return false; };
        }
+    if(node.className == 'popup3') {
+        node.onclick = function () { popWin(this, 640, 800); return false; };
+    }
        if(matches = (/^popup_([0-9]*)x([0-9]*)$/).exec(node.className)) {
            var w = matches[1], h = matches[2];
            node.onclick = function () { popWin(this,w,h); return false; };