function reSize()
{
try{
var oBody = ifrm.document.body;
var oFrame = document.all("ifrm");
oFrame.style.height = oBody.scrollHeight + (oBody.offsetHeight - oBody.clientHeight);
if (oBody.scrollWidth>750)
{
	oFrame.style.width 	= oBody.scrollWidth  + (oBody.offsetWidth  - oBody.clientWidth);
}
}
//An error is raised if the IFrame domain != its container's domain
catch(e)
{
//window.status = 'Error: ' + e.number + '; ' + e.description;
}
}
	