var initial = 0 ;var msg = document.all["FloatMessage"] ;document.onmousemove = mouseMove;function ChangeMessage ( content ){	msg.innerHTML = "<TABLE cellpadding=0 border=0 cellspacing=0><TD bgcolor=#999999><TABLE cellpadding=3 border=0 cellspacing=1><TD bgcolor=white><FONT face=\"Arial, sans-serif\" size=1 color=#303030>" + content + "</FONT></TD></TABLE></TD></TABLE>" ;	if ( initial == 0 )	{		msg.style.posLeft = x - 30  ;		msg.style.posTop = y - 90 ;	}	msg.style.visibility = "visible" ;	initial = 1 ;}function HideMessage (){	initial = 0 ;	msg.style.visibility = "hidden" ;}function mouseMove (){	x = event.x + document.body.scrollLeft ; 	y = event.y + document.body.scrollTop ;	if ( initial == 1 )	{		msg.style.posLeft = x - 30 ;		msg.style.posTop = y - 90 ;	}}