

function addCode(obj, code) {
	var object = document.getElementById(obj);
 	object.value += ' ' + code;
}

