// Frame popper
//if( top == self ) { location.replace( location.href.replace(/\.i\.htm/i, '.htm') ); }

// Iframe Sizer
function iFrameHeight() {
 return; // 27.01.2009 Disabled because of cross domain problems
 if (window.parent && window.parent!=window && window.parent.frames) {// && window.parent!=window.top) {
  var ifr = window.parent.frames['dframe'];
  var h = ifr.document.body.scrollHeight;
  h = (h>400)?h:400;
  ifr.resizeTo(750, h+20)
  window.parent.scrollTo(0,0);
 }
}

