function AdjustFrame(frame)
{
   if (document.all)
   {
      var w = frame.document.body.scrollWidth;
      if ( w < 550) w = 550;
      // document.all[frame.name].width=w+10;
      var h = frame.document.body.scrollHeight;
      document.all[frame.name].height=h+20;
   }
   else
      if (document.getElementById) 
      {
         var w = frame.document.width;
         // document.getElementById(frame.name).width=w+10;
         var h = frame.document.height;
         document.getElementById(frame.name).height=h+20;
      }
}
	

