function addLink(){var selection=window.getSelection();var body_element=document.getElementsByTagName('body')[0];var maxChars=100;var originalText=selection.toString();if(originalText.length>10){var truncatedText=originalText.substring(0,maxChars);var cleanURL=window.location.origin+window.location.pathname;var pagelink="... [Text Truncated] <br /><br /> Read more at: "+cleanURL+"<br />Copyright © EEE Made Easy - www.eeemadeeasy.com";var copytext=truncatedText+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