var isNN,isIE;
if (parseInt(navigator.appVersion.charAt(0))>=4){
	//alert(navigator.appName);
	isNN=(navigator.appName=="Netscape")?1:0;
	isIE=(navigator.appVersion.indexOf("MSIE")!=-1)?1:0;
}

if (isIE) {
	var h = document.body.scrollHeight;
} else {
	var h = document.documentElement.scrollHeight;
	//var h = document.body.offsetHeight;
}

//var h = 350;
window.parent.resizeFrame(h);
//alert(h);