﻿function OrphoKey(e) {
	if (e.keyCode == 13 && e.ctrlKey && msg)
		msg.Show(0, 'Повідомити автора сайту про помилку', 'На сторінці:'
		+ '<br /><b>' + location + '</b>'
		+ '<br />є помилка в тексті:'
		+ '<br /><textarea cols="10" rows="2" id="badval" style="width: 368px">' + SelectedTextGet() + '</textarea>'
		+ '<br />правильно буде так:'
		+ '<br /><textarea cols="10" rows="2" id="goodval" style="width: 368px"></textarea>',
		[{name:'Повідомити', action:"OrphoSend(location, $('badval').value, $('goodval').value);"}, {name:'Скасувати', action:''}]);
}
function OrphoSend(page, bad, good) {
	var doc = $('OrphoForm').contentWindow.document;
	doc.getElementById('txtPage').value = page;
	doc.getElementById('txtBad').value = bad;
	doc.getElementById('txtGood').value = good;
	doc.frmEml.submit();
}
function SelectedTextGet() {
	var txt = '';
	if (window.getSelection)
		txt = window.getSelection();
	else if (document.getSelection)
		txt = document.getSelection();
	else if (document.selection)
		txt = document.selection.createRange().text;
	return txt;
}