
function initIframeDims() {
  try { 
    if (top.location != location) {
        var bodyObj = document.body;
	var PADDING = 15;
	window.resizeTo(700,bodyObj.scrollHeight + PADDING);
    }
  } catch(exc) { void(0); }
}

document.body.onload = new Function ("initIframeDims()");

