//Show the Tool tip table
function inToolTip() 
{
	var src = event.toElement;
    if (src.tagName == "A") 
    {
		//Locate the element
		var sDivTitle = "div" + src.id;
		var elTipDiv = document.all(sDivTitle);
		if( elTipDiv != null )
		{
			var nOffsetTop = src.offsetTop;
			var objParent = src.parentElement
			while( objParent )
			{
				if( objParent.tagName != "TD" )
				{
					nOffsetTop += objParent.offsetTop;
				}
				objParent = objParent.parentElement;
			}
				
			//Get the Main Table left edge and set div horrizontal posn.
			var elMainTable = document.all("TblPageCentre");
			if( elMainTable )
				elTipDiv.style.left = elMainTable.offsetLeft+125;
		
			//Position and Display the 
			elTipDiv.style.top  = nOffsetTop;
			elTipDiv.style.display = "";
		}
	}
 }

//Hide the tool tip table.
function outToolTip() 
{
	src=event.fromElement;
    if (src.tagName == "A") 
    {
		var sDivTitle = "div" + src.id;
		var elTipDiv = document.all(sDivTitle);
		if( elTipDiv != null )
			elTipDiv.style.display = "none";
	}
}