<!-- Begin
var NS = (navigator.appName == "Netscape") ? 1 : 0;
if (NS) document.captureEvents(Event.DBLCLICK);
document.ondblclick = dict;
//if (NS)    document.captureEvents(Event.MOUSEUP);
//document.onmouseup = dict;

var newwin;
function dict() {
if (NS) {
t = document.getSelection();
opennewwin(t);
}
else {
t = document.selection.createRange();
if(document.selection.type == 'Text' && t.text != '') {
document.selection.empty();
opennewwin(t.text);
      }
   }
}
function opennewwin(text) {
if (text > '') {
newwin = window.open('http://print.infoplease.com/dictionary/'+text, 'dictionary', 'width=500, height=500, resizable=yes, menubar=no, toolbar=no, scrollbars=yes, location=no');
setTimeout('newwin.focus()', 100);
   }
}
//  End -->
