function onmisprint(data)
{
    alert(data);
}

$(document).keypress( function (e) {

    if ( e.ctrlKey && !e.altKey && !e.shiftKey && (e.which==13 || e.which==10) ) {
    
	var selection='';
	if (document.selection) {
	    selection = document.selection.createRange().text;
	} else {
	    selection = document.getSelection();
	}
	
	if (selection == null || selection == '') {
	    alert('Для уведомления об ошибке нужно:\n1. Выделить текст\n2. Нажать ctrl-Enter\n3. Ввести комментарий (а так же e-mail,\n   если хотите получить ответ!).');
	    return;
	}
	
        var comment=window.prompt('Вы нашли ошибку в фразе: \n"'+selection+'"\nПрокомментируйте её!\nУкажите e-mail, если хотите получить ответ!','');
	if (comment==null || comment=='') {
	    alert('Комментарий обязателен, сообщение не отправлено!');
	} else {
	    $.post('/book/.htprotected/misprint.php',{txt:selection,rem:comment,url:document.URL},onmisprint);
	}
	
    }
}
);