var commons = {
el1: document.getElementById('id1')
,el2: document.getElementById('id2')
,el3: document.getElementById('id3')
}
function A( opts ){
opts.el1.innerHTML = 'aaa';
}
function B( opts ){
opts.el1.innerHTML = 'A.A.A.';
opts.el2.innerHTML = 'bbb';
opts.el3.innerHTML = 'ccc';
}
A( commons);
B( commons);