 getSelectText=function(){ 
 var txt=''; 
 if(window.getSelection){ 
 txt=window.getSelection(); 
 }else if(document.getSelection){ 
 txt=document.getSelection(); 
 }else if(document.selection){ 
 txt=document.selection.createRange().text; 
 } 
 return txt; 
 } 

 sendBrkWords=function(){ 
 var txt=getSelectText(); 
 if(txt==''){ 
 _uWnd.alert('Выделите текст с опечаткой<hr> затем кликните "Опечатка"','',{w:230,h:80,tm:3000}); 
 }else{ 
 var s1='Адрес: '+window.location.href+'\n'; 
 s1+='Заголовок: '+document.title+'\n'; 
 s1+='Опечатка: '+txt+'\n'; 
 $('#brkWordText').html(s1); 
 s2=$('#brkWordForm').html(); 
 s2='<div style="text-align:center;"><b>'+txt+'</b>.</div>'+s2; 
 new _uWnd('winBreakWords','Опечатка в тексте..',300,200,{autosizeonimages:1,modal:1,closeonesc:1,resize:0,popup:1},s2); 



 return false; 
 } 
 } 
