	var form_dyn = {
		obj_form: false,

		submit: function (obj_el) {
			this.form();

			for (q=0; q<obj_el.length; q++) {
				this.element(obj_el[q][0], obj_el[q][1]);
			}

			this.finish();

			this.obj_form.submit();
		},

		form: function () {
			this.obj_form = document.createElement("FORM");
			this.obj_form.method = "post";
			this.obj_form.action = "form/";
		},

		element: function (name, value) {
			var tmp = document.createElement("input");
			tmp.type = "hidden";
			tmp.name = name;
			tmp.value = value;

			this.obj_form.appendChild(tmp);
		},

		finish: function () {
			document.body.appendChild(this.obj_form);
		}
	}