function zoom(bildquelle, bildbreite, bildhoehe)
{
eigenschaften = "left=100,top=60,width=" + (bildbreite) + ",height=" + (bildhoehe) + ",resizable";
inhalt = "<html><head><title>Surava - Zoom</title></head><body bgcolor='white' marginwidth='0' marginheight='0' topmargin='0' leftmargin='0'";
inhalt += "><center><a onclick='javascript:window.close()'><img src='" + bildquelle + "'></a>";
inhalt += "</center></body></html>";
fenster = window.open("", "", eigenschaften);
fenster.document.open();
fenster.document.write(inhalt);
fenster.document.close();
}
