function resizeIframe() {
	// Must launched on the body onload event handler for IE
	// Use document.documentElement if you are in Compat mode
  if (navigator.appName == "Microsoft Internet Explorer") {
	i = parent.document.getElementById(window.name);
	iHeight = document.body.scrollHeight;
	i.style.height = iHeight + 5 + "px"; 
  }
/*  if (navigator.appName == "Netscape") { 	
	i = parent.document.documentElement(window.name)  
	iHeight = document.body.scrollHeight
	i.style.height = iHeight + 5 + "px"	
  } */
}  
