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 = 728;
}
catch(e)
{
document.getElementById("ifrm").width = 728;
document.getElementById("ifrm").height = window.frames.ifrm.document.body.offsetHeight+20;
}
}
