function mycopy(){
    var str;
    if (window.getSelection)
    {
        str = window.getSelection().toString();
    }
    else if (document.getSelection)
    {
        str = document.getSelection();
    }
    else if (document.selection)
    {
        str = document.selection.createRange().text;
    }
    if (str.length > 500) {
        str = str.substring(0, 500);
        str += "...\r\n\r\nПолная версия здесь: ";
    }
    else {
        str += "\r\n\r\nВзято с ";
    }
    str += window.location.href;
    window.clipboardData.setData("Text", str);
    return false;
}

function l(){
	window.clipboardData.setData("Text", window.location.href);
	alert("Ссылка на страницу скопирована. Для вставки нажмите Ctrl+V.");
	return false;
}
//document.onselectstart = l;
//document.oncontextmenu = l;
