	var selectedtext = '';
	$(document).bind('textselect', function (evt, string, element) {
		selectedtext = string;
		//if (string != "") {alert('Selected text (' + element.tagName + '): ' + string);}
	});

$().keypress(function(e) {
	if((e.ctrlKey) && ((e.keyCode == 0xA)||(e.keyCode == 0xD))) {
		if (selectedtext!='') {
			//alert(selectedtext+' '+document.location);
			//alert(selectedtext);
			if (typeof(wid)!='undefined') wid.close();
			wid=window.open("/error.htm?"+encodeURI(selectedtext),"error","location=0,status=0,scrollbars=0,width=400,height=280");
			wid.focus();
		}	
	}
 });

