function dynCounterSize()
 {
  var parentObject = parent.document.getElementById('counter').style;
  var THIS = document.getElementById('counter');

  // dynamic height
  parentObject.height=(THIS.offsetHeight) + "px";
  // dynamic width
  parentObject.width=(THIS.offsetWidth) + "px";
}
window.onload = dynCounterSize;
