//// br.js -- shared javascript for Bare Performance//// STILFX / Rich Strucke May 2006//function matchHeights(document, objOneName, objTwoName) {  obj1 = document.getElementById(objOneName);  obj2 = document.getElementById(objTwoName);  //alert ('obj1.offsetHeight='+obj1.offsetHeight);  obj2.style.height = obj1.offsetHeight+"px";}