<!--
function calcHeight()
{
//find the height of the internal page
var the_height=
document.getElementById('the_iframe').contentWindow.
document.body.scrollHeight;

//change the height of the iframe
document.getElementById('the_iframe').height=
the_height;
}
function calcHeight2()
{
//find the height of the internal page
var the_height1=
document.getElementById('the_iframe2').contentWindow.
document.body.scrollHeight;

//change the height of the iframe
document.getElementById('the_iframe2').height=
the_height1;
}
function calcHeight3()
{
//find the height of the internal page
var the_height2=
document.getElementById('the_iframe3').contentWindow.
document.body.scrollHeight;

//change the height of the iframe
document.getElementById('the_iframe3').height=
the_height2;
}
function calcHeight4()
{
//find the height of the internal page
var the_height4=
document.getElementById('the_iframe4').contentWindow.
document.body.scrollHeight;

//change the height of the iframe
document.getElementById('the_iframe4').height=
the_height4;
}

function calcHeight5()
{
//find the height of the internal page
var the_height5=
document.getElementById('the_iframe5').contentWindow.
document.body.scrollHeight;

//change the height of the iframe
document.getElementById('the_iframe5').height=
the_height5;
}
//-->