function sf(){document.f.q.focus();}

//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);
			}
		}
}
