	function add_ids(all_str,id_str){
		if(all_str){
			return all_str+","+id_str;
		}else{
			return id_str;
		}
	}
