<!--


if ((parseInt(navigator.appVersion) >= 3) && (typeof(onBsscAutoSync) != "undefined") && (window.name.indexOf("BSSCPopup") == -1))
	onBsscAutoSync();



var NS = (navigator.appName == "Netscape") ? 1 : 0;
if (NS) document.captureEvents(Event.DBLCLICK);
document.ondblclick = ludict;

var newwin;
function ludict() {
if (NS) {
lutxt = document.getSelection();
openDictWin(lutxt);
}
else {
lutxt = document.selection.createRange();
if(document.selection.type == 'Text' && lutxt.text != '') {
document.selection.empty();
openDictWin(lutxt.text);
      }
   }
}
function openDictWin(text) {
if (text > '') {
newwin = window.open('http://www.dictionary.com/cgi-bin/dict.pl?term='+text, 'dictionary', 'width=700, height=700, resizable=yes, menubar=no, toolbar=no, scrollbars=yes');
setTimeout('newwin.focus()', 100);
   }
}



//-->
