function showMouseOver(text, e)
    {
        document.getElementById('OverText').innerHTML = text;

	var body = (window.document.compatMode && window.document.compatMode == "CSS1Compat") ? window.document.documentElement : window.document.body || null;
    
	var topPixel = e.pageY ? e.pageY : e.clientY + body.scrollTop;
	var leftPixel = e.pageX ? e.pageX : e.clientX + body.scrollLeft; 

	topPixel += 20;
	leftPixel += 10;  


        document.getElementById('OverText').style.top = topPixel + "px";
        document.getElementById('OverText').style.left = leftPixel + "px";
        document.getElementById('OverText').style.display = "block";
    }

    function hideMouseOver()
    {
        document.getElementById('OverText').innerHTML = "";

        document.getElementById('OverText').style.top = "0px";
        document.getElementById('OverText').style.left = "0px";    
        document.getElementById('OverText').style.display = "none";
    }
