//nicht vergessen einzufügen <body ondblclick="dictionary()">
function dictionary() {
if (navigator.appName == "Netscape") {
t = document.getSelection();
opennewdictwin(t);
}
else {
t = document.selection.createRange();
if(document.selection.type == 'Text' && t.text != '') {
document.selection.empty();
opennewdictwin(t.text);
      }
   }
}
function opennewdictwin(text) {
if (text > '') {
var newwin = window.open('http://www.anthroposophie.net/lexikon/liste.php?select='+escape(text), '_self', 'width=800,height=500,left=130,resizable=yes,menubar=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes,location=yes,personalbar=yes');
//var newwin = window.open('http://www.odysseetheater.com/cgi-bin/search/search1.pl?Match=1&Realm=www.anthroposophie.net&Terms='+escape(text), '_self', 'width=800,height=500,left=130,resizable=yes,menubar=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes,location=yes,personalbar=yes');
   }
}
status='Doppel-Click auf ein beliebiges Wort listet entsprechende Einträge im Lexikon Anthroposophie.'
document.ondblclick=dictionary //funktioniert nur mit IE. Für NS füge ein: <body ondblclick="dictionary()">
