
function OpenChild(URL,w,h){
	var wnd;
	wnd=window.open(URL, 'child', 'width='+w+',height='+h+',resizable=yes,scrollbars=yes,toolbar=no,location=no,status=no,directories=no');
	wnd.focus();
}

function OpenChild2(e,URL1,w,h){
	r = 10;
	y = parseInt(e.childNodes(0).style.top);
	x = parseInt(e.childNodes(0).style.left);

	ec = document.getElementsByName('LinkIcon');

	c=0;
	for(i=0;i<ec.length;i++)
	{
		e=ec.item(i);
		dy = parseInt(e.style.top)-y;
		dx = parseInt(e.style.left)-x;
		if( dy*dy+dx*dx<r*r ){ c+=1; }
	}

	if(c==1){ OpenChild(URL1,w,h);return false; }
	return true;
}

