function changeHeight(id,name) {
	document.getElementById(id).height = 0 + "px" ;
	if (document.height) {
		document.getElementById(id).height = top.frames[name].document.height + "px" ;
	} else {
		document.getElementById(id).height = top.frames[name].document.body.scrollHeight + "px" ;
	}
}
