function posChild(fromObj)
{
divClose();
objAncor=document.getElementById('ancor_'+fromObj);
positionLeft=objAncor.offsetLeft;
positionTop=objAncor.offsetTop;

objChild=document.getElementById('childrens_'+fromObj);
objChild.style.left=positionLeft+20;
objChild.style.top=positionTop+0;
objChild.style.display='block';
if (ftimer!='') window.clearTimeout(ftimer);
}

function visChild()
{
ftimer = window.setTimeout("divClose()",500);
}

function divClose()
{
if (objChild!='') objChild.style.display='none';
}
