function InitializeMe()
		{
			Bloadfunction(); 
			window.onmousemove = Boverhere;
		}
			var BvarInitialize = false;		
			var BvarContentInfo = '';
			var BvarToolTip;
			var offsetdivfrompointerY=-190
			var BvarPos = new Array(2);
			BvarPos[0] = 0;
			BvarPos[1] = 0;
			
			var BvarTopColor = "DimGray"
			var BvarSubColor = "#f2f2f2"
			
			function Bloadfunction() {
			
				BvarToolTip = document.getElementById("ToolTip");
		
			}
			function Boverhere(e){
			
			if(BvarInitialize) {

			if(e)
			BMoveToolTip(e.pageX + 15, e.pageY);

			else
			BMoveToolTip(window.event.x + document.body.scrollLeft + 15, window.event.y + document.body.scrollTop);
			}
			
			else {
			
			if(e) {

			BvarPos[0] = e.pageX;
			BvarPos[1] = e.pageY;
			

			}

			else {

			BvarPos[0] = window.event.x + document.body.scrollLeft;
			BvarPos[1] = window.event.y + document.body.scrollTop;
			}
			}
			}
			function BActivate() {
				
				BMoveToolTip(BvarPos[0] + 15, BvarPos[1]);
				BvarToolTip.style.visibility = "visible";
				BvarInitialize = true;
			
			}
			
			function BdeActivate() {
				
				BvarToolTip.style.visibility = "hidden";
				
				BvarInitialize = false;
			
			}
			
			function BMoveToolTip(x, y) {
			
				BvarToolTip.style.left = x + 'px';
				BvarToolTip.style.top = y +offsetdivfrompointerY+'px' ;
			
			}
			function BReplaceContentInfo() {
				
				BvarToolTip.innerHTML = BvarContentInfo;
			}
			function ViewContactContent(mBody)
			{
				BvarContentInfo = '<table class="empty" border="0" width=300 cellspacing="0" cellpadding="0">'+
				'<tr><td width="100%" bgcolor="#e2e2e2">'+
				document.getElementById(mBody).innerHTML
				'</td></tr>'+
				'</table>';
				BReplaceContentInfo();
			}
			function BEnterContent(mBody){
			BvarContentInfo = '<table class="empty" border="3" width=400 cellspacing="0" cellpadding="4">'+
			'<tr><td width="100%" bgcolor="#e2e2e2">'+
			document.getElementById(mBody).innerHTML
			'</td></tr>'+
			'</table>';
			BReplaceContentInfo();
			}
