function ToolTipDiv(id,flagit,event) {
		if (flagit=="1"){
			if (document.layers) {
				document.layers[''+id].visibility = "show";
				document.layers[''+id].left = event.clientX + document.body.scrollLeft - 50;
				document.layers[''+id].top = event.clientY  + document.body.scrollTop + 20;
			}
				else if (document.all){
					document.all[''+id].style.visibility = "visible";
					document.all[''+id].style.left = event.clientX + document.body.scrollLeft - 50;
					document.all[''+id].style.top = event.clientY + document.body.scrollTop + 20;
				}
				else if (document.getElementById) {
					document.getElementById(''+id).style.visibility = "visible";
					document.getElementById(''+id).style.left = event.clientX + document.body.scrollLeft - 50;
					document.getElementById(''+id).style.top = event.clientY + document.body.scrollTop + 20;
				}
		}
		else  if (flagit=="0"){
			if (document.layers) document.layers[''+id+''].visibility = "hide";
				else if (document.all) document.all[''+id+''].style.visibility = "hidden";
				else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden";
			}
		}	