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