function addLink() {
var body_element = document.getElementsByTagName('body')[0];
var selection;
var items = Array("Подробнее на сайте ", "Источник: ", "Более полная информация: ", "Подробнее на СарБК: ","Подробная информация тут: ");
var item = items[Math.floor(Math.random()*items.length)];
selection = window.getSelection();
var url_to = document.location.href;
if (url_to.indexOf("?") < 0){
url_to += "?utm_source=copy_links";
}else{
url_to += "&utm_source=copy_links";
}
var pagelink = "
"+item+" "+document.location.href+"";
var copytext = selection + pagelink;
var newdiv = document.createElement('div');
newdiv.style.position='absolute';
newdiv.style.left='-99999px';
body_element.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout(function() {
body_element.removeChild(newdiv);
},0);
}
document.oncopy = addLink;