// JavaScript Document
function resizeIframe() {

	// Must launched on the body onload event handler for IE
	// Use document.documentElement if you are in Compat mode
	i = parent.document.getElementById(window.name)
	iHeight = document.body.scrollHeight
	if(iHeight<500)
	iHeight=500;
	i.style.height = iHeight + 5 + "px"
}
