function reportProblem() {
	//showElement('searchResult');
	advAJAX.submit(document.getElementById("error-form"), {
		onLoading : function(obj) { 
			$('content-form-msg').innerHTML = "Trwa wysylanie...";
		},
		onSuccess : function(obj) {
			$('error-subject').value = '';
			$('error-description').value = '';
			$('content-form-msg').innerHTML = obj.responseText;
		}
	}
	);
}