function add_object4(lotation,obj1,obj2,obj3,obj4){
	var myObjectElement = document.createElement(obj1);
	var myParamElement1 = document.createElement(obj2);
	var myParamElement2 = document.createElement(obj3);
	var myParamElement3 = document.createElement(obj4);

	myObjectElement.appendChild(myParamElement1);
	myObjectElement.appendChild(myParamElement2);
	myObjectElement.appendChild(myParamElement3);

	lotation.appendChild(myObjectElement);
}

function add_object3(lotation,obj1,obj2,obj3){
	var myObjectElement = document.createElement(obj1);
	var myParamElement1 = document.createElement(obj2);
	var myParamElement2 = document.createElement(obj3);

	myObjectElement.appendChild(myParamElement1);
	myObjectElement.appendChild(myParamElement2);

	lotation.appendChild(myObjectElement);
}
