var msg1 = '<p align="right"><a href="javascript:void(0);" onclick="hideToolTip(\'divToolTips\')">Close [<b>X</b>]</a></p><p class="para1"><b>Town Hall on 4th October 2008</b><br />Chairman, Ramesh Ramanathan addresses the Town Hall on 4th October 2008. His speech will focus on the milestones Janalakshmi has achieved till date, and the targets for the quarter ahead. This is an opportunity for all employees to come together and take back warm wishes for the festive season.</p>';
var msg2 = '<p align="right"><a href="javascript:void(0);" onclick="hideToolTip(\'divToolTips\')">Close [<b>X</b>]</a></p><p class="para1"><b>Janalakshmi inaugurates its second branch in Gurgaon on 8th September 2008</b><br />The Gurgaon Branch was officiated in the presence of Mr Bannerji, Retired Commissioner of Police and Consultant to Janalakshmi & Mr.Rajan Jerath, Regional Head – Northern India. A small puja was performed within the Branch premises.</p>';
function showToolTips(i, id,alink,msg,xpos,ypos)
{

 var obj = document.getElementById(id);
// obj.innerHTML = "dfgdf";
 //isrc="images/"+img;
// isrc=img;
 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 = msg;
}
function hideToolTip(id)
{
	var obj				= document.getElementById(id);
	obj.style.display	= "none"; 
}
