
var menuId;
function show_flash(divid,ancPst,xpos,ypos){
	var obj = document.getElementById(divid);
	var cord = getAnchorPosition(ancPst);
	//alert(cord.x)
	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.display = "";
	obj.style.zIndex = "1";
}
function showmenu(obj1,obj2,imgname)
{
	//alert("Hi");
	var obj = document.getElementById(obj1);
	var obj2 = document.getElementById(obj2);
	
	if(obj.style.display!='')
	{
		obj.style.display='';
		obj2.src='/portal/newgen/citifinancial/images/'+imgname+"_up.gif";
		
	}
	else
	{
		obj.style.display='none';
		obj2.src='/portal/newgen/citifinancial/images/'+imgname+"_down.gif";
	}
	
}
function hidemenu(obj1,obj2,imgname)
{
	//alert("Hi");
	var obj = document.getElementById(obj1);
	var obj2 = document.getElementById(obj2);

	obj.style.display='none';
	obj2.src='/portal/newgen/citifinancial/images/'+imgname+"_down.gif";
}

