//resize iframe http://www.programmingtalk.com/showthread.php?t=25995
	function calcHeight()
	{
	  //find the height of the internal page
	  var the_height=
		document.getElementById('myframe').contentWindow.
		  document.body.scrollHeight;
	
	  //change the height of the iframe
	  document.getElementById('myframe').height=
		  the_height + 70;
	}
	function calcHeight2()
	{
	  //find the height of the internal page
	  var the_height=
		document.getElementById('myframe2').contentWindow.
		  document.body.scrollHeight;
	
	  //change the height of the iframe
	  document.getElementById('myframe2').height=
		  the_height + 500;
	}
	function calcHeight3()
	{
	  //find the height of the internal page
	  var the_height=
		document.getElementById('myframe3').contentWindow.
		  document.body.scrollHeight;
	
	  //change the height of the iframe
	  document.getElementById('myframe3').height=
		  the_height + 200;
	}
