//don't forget to add <body ondblclick="dictionary()">
function dictionary() {
	if (navigator.appName!='Microsoft Internet Explorer') {
		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) {
		while (text.substr(text.length-1,1)==' ') 
			text=text.substr(0,text.length-1);
		while (text.substr(0,1)==' ') 
			text=text.substr(1);
		if (text > '')
			window.open('http://www.thefreedictionary.com/_/partner.aspx?pid=GoArticles&word='+escape(text), 'dictionary', 'width=700,height=500,resizable=yes,menubar=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes,location=yes,personalbar=yes');
	}
}
