function lbxon(wid,hig,contents) {
if(contents!="") {
document.getElementById("lbx").firstChild.nodeValue=contents;
document.getElementById("lbx").style.width=wid+"px";
document.getElementById("lbx").style.height=hig+"px";
document.getElementById("lbx").style.visibility="visible"; } }

function lbxoff() { document.getElementById("lbx").style.visibility="hidden"; }

function LayerPosition (Ereignis) {
if(document.getElementById("lbx").style.visibility=="visible") {
if(navigator.appName.indexOf("xplorer")<0) {
neueX=(Ereignis.pageX+12); neueY=(Ereignis.pageY+15); }
else { neueX=window.event.x+12+document.documentElement.scrollLeft; neueY=window.event.y+12+document.documentElement.scrollTop; }
document.getElementById("lbx").style.left=neueX+"px";
document.getElementById("lbx").style.top=neueY+"px"; } }

document.onmousemove = LayerPosition;
