﻿<!--
function calcDimensions()
{
  //find the height of the internal page
  var the_height=
    document.getElementById('the_iframe').contentWindow.
      document.body.scrollHeight;

	// Check if height is greater than minimum size.
	if (the_height < 600)
	{
		the_height = 680
	}
  //change the height of the iframe
  document.getElementById('the_iframe').height=
      the_height;
      
 //find the width of the internal page
  var the_width=
    document.getElementById('the_iframe').contentWindow.
      document.body.scrollWidth;
	
	// Fix the width (hard coded)
	the_width = "850px"
	
  //change the width of the iframe
  document.getElementById('the_iframe').width=
      the_width;
}
//-->

