var cyr=new Array('А','В','Е','К','М','Н','О','П','Р','С','Т','Х','а','е','к','о','р','с','у','х');var lat=new Array('A','B','E','K','M','H','O','Π','P','C','T','X','a','e','ĸ','o','p','c','y','x');function replaceChars(text){for(var i=0;i<cyr.length;i++){text=text.replace(new RegExp(cyr[i],'g'),lat[i])}return(text)}function linkSource(){if(window.clipboardData&&document.selection){var selectionObject=document.selection.createRange();var selectionText=selectionObject.text;if(selectionText.length>100){selectionText=replaceChars(selectionText);selectionText+="\r\n\r\n"+document.location.href;window.clipboardData.setData('Text',selectionText);return(false)}}else{var selectionObject=window.getSelection();var selectionText=selectionObject.toString();if(selectionText.length>100){selectionText=replaceChars(selectionText);selectionText+="\n\n"+document.location.href;var pre=document.createElement('pre');document.getElementsByTagName('body')[0].appendChild(pre);pre.textContent=selectionText;selectionObject.selectAllChildren(pre);window.setTimeout(function(){document.getElementsByTagName('body')[0].removeChild(pre)},0)}}}if(window.addEventListener){window.addEventListener('copy',linkSource,false)}else{window.onload=function(){document.body.oncopy=linkSource}}

