function zeigen(datum,autor,bereich)
{
txt='<table border="0" cellpadding="0" cellspacing="0" width="125">'
	+'<tr>'
	+'<td width="14"><img src="leer.gif" width="14" height="12"></td>'
	+'<td width="100%"><img src="leer.gif" width="1" height="12"></td>'
	+'<td background="post_it_0.gif" width="23"><img src="leer.gif" width="23" height="12"></td>'
	+'<td background="post_it_1.gif" width="12"><img src="leer.gif" width="12" height="12"></td>'
	+'</tr>'
	+'<tr>'
	+'<td background="post_it_2.gif" width="14"><img src="leer.gif" width="14" height="44"></td>'
	+'<td background="post_it_3.gif" width="100%" valign="bottom" class=\"f11\"><b>Datum:</b><br>'
	+datum
	+'</td>'
	+'<td background="post_it_4.gif" width="23"><img src="leer.gif" width="23" height="44"></td>'
	+'<td background="post_it_5.gif" width="12"><img src="leer.gif" width="12" height="44"></td>'
	+'</tr>'
	+'<tr>'
	+'<td background="post_it_6.gif" width="14" rowspan="2"><img src="leer.gif" width="14" height="80"></td>'
	+'<td bgcolor="#FFFF9A" width="100%" colspan="2" height="63" nowrap valign="top" class=\"f11\"><b>Autor:</b><br>'
	+autor
	+'<br><b>Bereich:</b><br>'
	+bereich
	+'</td>'
	+'<td background="post_it_8.gif" width="12" rowspan="2"><img src="leer.gif" width="12" height="80"></td>'
	+'</tr>'
	+'<tr>'
	+'<td background="post_it_7.gif" width="100%" colspan="2" height="9"><img src="leer.gif" width="92" height="17" onmouseover="fadeIn(5)" onmouseOut="fadeIn(100)"></td>'
	+'</tr>'
	+'</table>';

x_off=0;
y_off=-30;

if(document.layers)
{
document.anzeige.left=document.images["s1"].x+x_off
document.anzeige.top=document.images["s1"].y+y_off
document.anzeige.document.open()
document.anzeige.document.write(txt)
document.anzeige.document.close()
document.anzeige.visibility="visible"
}
else
{
document.getElementById("anzeige").style.left=parseInt(document.getElementById("s1").offsetLeft)+x_off
document.getElementById("anzeige").style.top=parseInt(document.getElementById("s1").offsetTop)+y_off
document.getElementById("anzeige").innerHTML=txt
document.getElementById("anzeige").style.visibility="visible"
}
}


ie5  = (document.all && document.getElementById);
ns6 = (!document.all && document.getElementById);

function fadeIn(fade)
{
	if(ie5) document.getElementById('anzeige').filters.alpha.opacity = fade;
	if(ns6) document.getElementById('anzeige').style.MozOpacity = fade/100;
}
