// JavaScript Document
function reSize()
{
	try{
	var oBody	=	ifrm.document.body;
	var oFrame	=	document.all("ifrm");

	oFrame.style.height = oBody.scrollHeight + (oBody.offsetHeight - oBody.clientHeight);
	document.getElementById("ifrm").width = 680;
	}
	catch(e)
	{
	document.getElementById("ifrm").width = 680;
	document.getElementById("ifrm").height = window.frames.ifrm.document.body.offsetHeight+20;
	}
}



