function posChild(fromObj)
{
divClose();
// objAncor=document.getElementById('ancor_'+fromObj);
// positionLeft=objAncor.offsetLeft;
// positionTop=objAncor.offsetTop;
objParent=document.getElementById('pa'+fromObj);
objChild=document.getElementById('ch'+fromObj);
//objChild.style.left=positionLeft-12;
//objChild.style.top=positionTop+200;
objParent.className='mas';
objChild.style.display='block';
if (ftimer!='') window.clearTimeout(ftimer);
}

function visChild()
{
ftimer = window.setTimeout("divClose()",500);
}

function divClose()
{
if (objParent!='') objParent.className='';
if (objChild!='') objChild.style.display='none';
}