function resizeIFrame(height)
{
  document.all("panel").style.height = height - 10;
  document.body.style.height=height-10;
}

function resizeTopIFrame(panel)
{
parent.resizeIFrame(document.body.scrollHeight + 10)
} 