function openPopup(site, width, height)
{
  x = screen.availWidth/2-width/2;
  y = screen.availHeight/2-height/2;
  window.open(site,'Detailansicht','width='+width+',height='+height+',top='+y+',left='+x+',scrollbars=yes,resizable=yes');
}


