var ee;
var bbstr;
function nw(word)
{
	if(ee)
	{
		ee.close();
	}
	 ee=showModelessDialog("http://www.galim.org.il/cgi-bin/galim/mywaves/click_milon.pl?word="+word+"&visual=1", window ,"dialogHeight:190px; dialogWidth:300px;help:no;status:no;resizable: no;scroll:yes;dialogLeft:0;dialogTop:100; ");
	 
}


function bbJump()
{
	if (document.selection.type=="Text" &&document.selection.createRange)
	  { 
		 document.body.style.cursor="wait";
		 bbstr = document.selection.createRange(); 
		 bbstr=bbstr.text ;
		if(bbstr.indexOf(' ')!=-1)
		bbstr=bbstr.substring(bbstr.charAt(0),bbstr.indexOf(' '));
		nw(bbstr);
	}
	else
	{
		document.selection.empty();
	}
}

 document.ondblclick =bbJump;
