function popup(bild,title,alt)
{
  popnew = window.open('','','width=300,height=393');
  with (popnew)
  {
    document.open();
    document.write('<html><head><title>'+title+'</title>');
    document.write('<meta http-equiv=\"imagetoolbar\" content=\"no\"></head>');
    document.write('<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" scroll=\"no\">');
    document.write('<a href=\"javascript:self.close()\">');
    document.write('<img src=\"'+bild+'\" border=\"0\" alt=\"'+alt+'\">');
	document.write('</body></html>');
	document.close();
  }
}

function hover2_an(id)
{
document.getElementById(id).style.color="#FF9F00";
}

function hover2_aus(id)
{
document.getElementById(id).style.color="#000000";
}

