| <HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Nick Simonov (nicks@iln.net) -->
<!-- Web Site: http://www.iln.net -->
<!-- This script and many more are available free online
at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var NS = (navigator.appName == "Netscape") ? 1 : 0;
if (NS) document.captureEvents(Event.DBLCLICK);
document.ondblclick = 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://www.iln.net/main/resources/dictionary/default.asp?Word='+text,
'dictionary', 'width=800, height=600, resizable=yes, menubar=yes, toolbar=yes,
scrollbars=yes');
setTimeout('newwin.focus()', 100);
}
}
// End -->
</script>
</HEAD>
|