function mouseOver(textString)
{
	var htmlCode = "";

	htmlCode += '<table cellSpacing="0" cellPadding="0" bgcolor="#FFF9CD">';
	htmlCode += '	<tr height="1"><td bgcolor="#000000" colSpan="5"></td></tr>';
	htmlCode += '	<tr height="3"><td width="1" bgcolor="#000000" nowrap></td><td colSpan="3"></td><td width="1" bgcolor="#000000" nowrap></td></tr>';
	htmlCode += '	<tr><td width="1" bgcolor="#000000" nowrap></td><td width="6" nowrap></td><td><span style="font-family:Verdana, Sans-Serif; font-size:7pt; color:#000000;">' + textString + '</span></td><td width="6" nowrap></td><td width="1" bgcolor="#000000" nowrap></td></tr>';
	htmlCode += '	<tr height="3"><td width="1" bgcolor="#000000" nowrap></td><td colSpan="3" nowrap></td><td width="1" bgcolor="#000000" nowrap></td></tr>';
	htmlCode += '	<tr height="1"><td bgcolor="#000000" colSpan="5"></td></tr>';
	htmlCode += '</table>';

	popupDiv.innerHTML = htmlCode;

	popupDiv.style.top =  "1000px";
	popupDiv.style.left = "0px";

	document.onmousemove = mouseMove;

	popupDiv.style.visibility = "visible";
}

function mouseOut()
{
	popupDiv.style.visibility = "hidden";
}

function mouseMove(e)
{
	x = event.clientX;
	y = document.body.scrollTop + event.clientY;

	popupDiv.style.top = (y) + "px";
	popupDiv.style.left = (x + 20) + "px";
}
