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