function GetHeight(ID2,NAME2)
{
if (document.height) 
{
document.getElementById(ID2).style.height = parent.frames[NAME2].document.height +20 +"px" ;
}
else
{
document.getElementById(ID2).style.height = parent.frames[NAME2].document.body.scrollHeight +20 +"px";
}
}