// JavaScript Document

function calcHeight()
{
  //find the height of the internal page
  var the_height=
    document.getElementById('the_iframe').contentWindow.
      document.body.scrollHeight;

	var hoogte_website = 520; //Deze waarde moet je aanpassen als de hoogte van de content in de rechterframe wijzigd
	if (the_height < hoogte_website) {
	the_height = hoogte_website;
	//document.write("<b>Good morning</b>");
	}
	
	var temp = the_height;

	if ((temp % 2) == 0){
		the_height = the_height + 1;
	}

  //change the height of the iframe
  document.getElementById('the_iframe').height=
      the_height + 8;
}
