function SendErrorReport(mes) {
	if(event.keyCode==10) {
		var r=document.selection.createRange();
		window.frames["SendErrorFrame"].document.forms[0].elements('text').value=r.text;
		window.frames["SendErrorFrame"].document.forms[0].elements('url').value=window.location;
		window.frames["SendErrorFrame"].document.forms[0].submit();
		if(mes!="") alert(mes);
	}
}