//funkcja Ajax
var Callback = {
	readHelpCont: function(result) {
		helpCont.AjaxObj=result;
		helpCont.income();
	},
	readHelpHead: function(result) {
		helpInside.AjaxObj=result;
		helpInside.incomeHead();
		helpInside.endTrans();
	},
	readHelpAll: function(result) {
		helpInside.AjaxObj=result;
		helpInside.incomeMain();
	},
	readHelpInst: function(result) {
		document.getElementById('opis').getElementsByTagName('h4')[0].innerHTML=result;
	}
};

var remote = new parserhelp(Callback);
