if (!document.layers&&!document.all&&!document.getElementById)
event="test"

//welcher Browser
var welchBrowser=sagBrowser();


function sagBrowser()
{
if(navigator.appName == 'Netscape')
  {
  if (parseInt(navigator.appVersion) >= 5) {return 'NN6';}
  else {return 'NN4';}
  }
else
  {return 'IE';}
}

function show(l,e,text){
var neu="<center><font color=#0F430F>"+text+"</font></center>"
if (welchBrowser == 'IE'){
 document.all.info.innerHTML =neu;
document.all.info.style.left=document.body.clientWidth/2-150;
document.all.info.style.top=document.body.clientHeight/2-150+document.body.scrollTop;
document.all.info.style.visibility="visible";

}
  if (welchBrowser == 'NN4'){

document.info.document.write('<layer bgcolor=#FFFFFF background=../images/menu/hintergrund.gif  style="border:1px solid #BAB9AD;font-size:10px;color:#0F430F;font-family:Arial,Helvetica,sans-serif;font-weight:300;">'+text+'</layer>')
document.info.document.close()
document.info.left=innerWidth/2-150;
document.info.top=innerHeight/2-150+window.pageYOffset;
document.info.visibility="show"
}

  if (welchBrowser == 'NN6'){
document.getElementById('info').innerHTML=neu;
//document.getElementById('info').firstChild.data=neu;
document.getElementById('info').style.left=e.pageX-150;
document.getElementById('info').style.top=e.pageY+5;
document.getElementById('info').style.visibility="visible";
}
}

function hide(){
if (welchBrowser == 'NN4'){
document.info.visibility="hidden"}

if(welchBrowser == 'IE'){
document.all['info'].style.visibility="hidden"
}

if (welchBrowser == 'NN6'){
document.getElementById('info').style.visibility="hidden"}

}