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