function mouseOver(e,string)
{

    // Ballon weergeven en op de juiste locatie.
    var ballon = document.getElementById("naamblok");
    if (!e) var e = window.event;
    var d 	= (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;

    var y 		= e.clientY + d.scrollTop+5;
    var x 		= e.clientX + d.scrollLeft+5;
    var tHeight	= y+ballon.clientHeight;
    var vHeight	= document.body.clientHeight;
    var tWidth	= x+ballon.clientWidth;
    var vWidth	= document.body.clientWidth;

    if(tHeight > vHeight){
        var y 	= ((e.clientY + d.scrollTop)-ballon.clientHeight );
    }
    if(tWidth > vWidth){
        var x 	= ((e.clientX + d.scrollLeft)-ballon.clientWidth);
    }
    ballon.style.top=(y-10)+"px";
    ballon.style.left=(x+10)+"px";
    ballon.style.display="block";
    ballon.innerHTML = string;
}

function mouseOut(){
    var ballon = document.getElementById("naamblok");
    ballon.style.display="none";
    ballon.innerHTML ="";
}
