
var CLEAR_DELAY = 250;
var IE_LEFT_ADJUST = 1;
var FF_LEFT_ADJUST = 1;
var IE_TOP_ADJUST =-28;//-23;
var FF_TOP_ADJUST =-28;//-24;



function setInPanel(obj,img)
{

	document.getElementById("img").src =img;
	var pos = EBUtilities.GetElemPos(obj);

	document.getElementById('actionsContainer').style.top = (pos.top - (Site.IsIE() ? IE_TOP_ADJUST : FF_TOP_ADJUST) )+"px";
	document.getElementById('actionsContainer').style.left = (pos.left - (Site.IsIE() ? IE_LEFT_ADJUST : FF_LEFT_ADJUST))+"px";
	document.getElementById('actionsContainer').style.width="178px";
	document.getElementById('actionsContainer').style.height="214px";
	document.getElementById('actionsContainer').style.display="block";
	document.getElementById('actionsContainer').style.position="absolute";

	Site.DetachEvent(document.getElementById('actionsContainer'),'onmouseout',clear);
	Site.AttachEvent(document.getElementById('actionsContainer'),'onmouseout',clear);


}

function clear()
{

	if (document.getElementById('actionsContainer').style.display=="none") return;
	//var _window = document.getElementById('tblWindow');
//	if (EBUtilities.IsMouseOver(window.event,_window)) return;

	document.getElementById('actionsContainer').style.top ="-1000px";
	document.getElementById('actionsContainer').style.left ="157px";

	document.getElementById('actionsContainer').style.display="none";
 }


