var refsite;
refsite = window.location.href;
function raLA() 
	{
		if (navigator.appName == "Netscape")
			{
				raAcSLP(window.getSelection());
			}
		else 
			{ 
				var strText = document.selection.createRange();
				if (document.selection.type == "Text" ) 
					{ 
						raAcSLP(strText.text);
					}
			}
	}

function raAcSLP(raAK)
	{
		if (raAK != "")
			{
				var raLSP;
				raLSP = window.open("http://www.risaleara.com/minilugat.asp?Kelime=" + raAK + "&site=" + refsite, "raLSP", "width=550,height=350,toolbar=0,location=0,directories=0,resizable=0,status=1,menubar=0");
				raLSP.focus();
			}
	}
document.ondblclick = raLA;