 function fnNfGood()
   {

	   JsHttpRequest.query(
				'load_info_help.php', // backend
				{
					// pass a text value
					'action': 'feedback',
					'val': document.getElementById('nf_good').value
				},
				// Function is called when an answer arrives.
				function(result, errors) {
					if (errors && errors!=='') {
						//document.getElementById('test').appendChild(document.createTextNode(errors));

					}

					if (result) {
						alert('Спасибо за поддежку!');
						document.getElementById('nf_good').value='';
					}

					//document.getElementById('opDiv').style.display='none';

				},
				true // do not disable caching
				);
				return true;


	   }
   
 

 function fnNoHelp(val)
 {

	   JsHttpRequest.query(
				'load_info_help.php', // backend
				{
					// pass a text value
					'action': 'no_help',
					'val': val
				},
				// Function is called when an answer arrives.
				function(result, errors) {
					if (errors && errors!=='') {
						//document.getElementById('test').appendChild(document.createTextNode(errors));

					}

					if (result) {
					}

					//document.getElementById('opDiv').style.display='none';

				},
				true // do not disable caching
				);
				return true;


	   }
 
 
