var bArray = new Array()
function addBnCl(id,overId,url)
{
	if (!document.getElementById) return
	document.write('<a href="'+url+'" target="_blank" style="position:absolute; z-index:2; width:1px; height:1px; _background:red; display:none;_filter:alpha(opacity=0);" id="'+id+'"></a>')
	bArray.push([id,overId])
}
function placeBnCl()
{
	if (!document.getElementById) return
	for (i=0;i<bArray.length;i++) {
		o=document.getElementById(bArray[i][1]);if (!o) continue
		x=o.offsetLeft;y=o.offsetTop;w=o.offsetWidth;h=o.offsetHeight
		while (o=o.offsetParent) {
			x+=o.offsetLeft;y+=o.offsetTop
		}
		o=document.getElementById(bArray[i][0]);if (!o) continue
		with (o.style) {
			left=x;top=y;width=w;height=h;display="inline"
		}
	}
}
