function iHeight(iName) {
	
	if(document.getElementById && !(document.all)) {
	
		HEIGHT =	document.getElementById(iName).contentDocument.body.scrollHeight;
					document.getElementById(iName).style.height = HEIGHT + 20 + 'px';
					
	} else if(document.all) {
	
   		HEIGHT = 	document.frames(iName).document.body.scrollHeight;
					document.all[iName].style.height = HEIGHT + 20;
					
	}
}