function tRejestracjaForm(id) {
	this.id = id;
	this.className = "Klient";
	this.Rejestruj = function(out) {
		if (out == null) {
			this.startProgress();
			this.form = "FormRejestracja";
			this.parametry = {"funkcja":"Rejestruj"};
			this.SUBMIT("Rejestruj")
		}
		else {
			this.stopProgress();
			this.form = this.formDEFAULT;
			if (out.status == 1) {
				$("#divMain").slideToggle('fast');
				$("#divInfoPostRegister").slideToggle('fast');
			}
			else {
			    alert(out.blad);
			}
		}
	}
}

tRejestracjaForm.prototype = new advAJAXwrapper();
var tRF = new tRejestracjaForm("tRF");
