
function showChildInfo(img,bookmarkMsg,alink,xpos,ypos)
{
 var obj = document.getElementById("addchild");
 obj.innerHTML = "";
 var cord = getAnchorPosition(alink);
 cord.y = cord.y+ypos;
 cord.x = cord.x+xpos;
 obj.style.top = eval("'"+cord.y + "px'");
 obj.style.left = eval("'"+cord.x + "px'");
 obj.style.visibility= "visible";
 obj.style.display = "block"; // when show
 obj.style.zIndex = "100000";
 obj.innerHTML = bookmarkMsg;

}
function hideChildInfo()
{
	var obj				= document.getElementById("addchild");
	obj.style.display	= "none"; 
}
