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