var flag;
window.onload = function() {
    var text;
    document.onmousedown = function(e) {
        flag = 0;
    }
    document.onmouseup = function(e) {
        text = (document.selection) ? document.selection.createRange().text : window.getSelection();
        text += '';
    }
    document.onkeydown = function(e) {
        if (!document.getElementById) return;
        if (window.event) e = window.event;
        var key = ((e.keyCode) ? e.keyCode : (e.which) ? e.which : null);
        
        if (key == 0x0D && e.ctrlKey && text.length>3) process(text);
    }
};
function process(text) {
    var url_corr = document.URL;
    if (text.length>140) {alert('Вы выбрали слишком большой объем текста. Ограничьтесь 140 символами.');return;}
    if (confirm("Статья:\n" + url_corr + "\n\nОрфографическая ошибка в тексте:\n\"" + text + "\"\n\nВы действительно хотите отправить сообщение об ошибке в Редакцию?")) {
        send_corr(text, url_corr);
    }
}
function send_corr(text, url_corr) {
    var data = "url="+url_corr+"&text="+text;
    var options = {
            type: "POST",
            data: data,
            url: "/scripts/media/corr.php"
            };
        $.ajax(options);
}
function tmp() {flag = 1;}
