function showToolTip()
{	
	
	var obj = document.getElementById('bubble_tooltip');
	obj.style.display = 'block';	
	setTimeout("hideToolTip()",5000) ;
	}	
function hideToolTip()
{

document.getElementById('bubble_tooltip').style.display = 'none';
	//var t=setTimeout(aa,5000);	
}
