
function over(str)
{
  document.images['menu_item_'+str].src = "/images/menu_item.gif";
}

function out(str)
{
  document.images['menu_item_'+str].src = "/images/space.gif";
}

function openPopup(path,alt_text)
{
  HTML = "<html><head><meta http-equiv='content-type' content='text/html; charset=ISO-8859-1'><meta http-equiv='content-language' content='de'><title>"+ alt_text +"</title></head><style>body{margin:0px;background: url(/images/content_bg.gif) repeat top left;}</style><body onBlur='top.close();return true;' onClick='top.close(); return true;'><br><center><img src='"+ path +"' style='border:1px solid #4B3131' name='load_image' onLoad='window.resizeTo(document.load_image.width+35,document.load_image.height+125);return true;'><br><br><font color='#4B3131' size='2' face='Tahoma,Verdana,Arial,sans-serif' style='font-size:11px'>"+ alt_text +"</font></center></body></html>";
  popupImage = window.open('','_blank','toolbar=no,left=5,top=5,scrollbars=no,resizable=yes,status=no,menubar=no');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
}