<!--
function calcHeight(n)
{

//find the height of the internal page

var the_height=
document.getElementById(n).contentWindow.
document.body.scrollHeight;

if (the_height==0) {
	the_height=294;
}

//change the height of the iframe
document.getElementById(n).height=the_height;
}
//-->