function zoom(cPicture,nWidth,nHeight){
NewWindow=window.open("","NeuEins","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars='no',resizable='no'");
NewWindow.
document.write ("<!doctype html public '-//w3c//dtd xhtml 1.0 strict//en' \n 'http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd'>\n<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='de'>\n");
NewWindow.
document.write ("<html>\n<head>\n<title>Vergrößerte Ansicht</title>\n");
NewWindow.
document.write ("<link rel='stylesheet' type='text/css' media='all' href='../style/zoom.css' />\n");
NewWindow.
document.write ("</head>\n");
NewWindow.
document.write ("<body onload='self.focus()' class='zoombody'\n");
NewWindow.
document.write ("<a href='#' onclick='window.close();return false' title='Fenster schließen'>");
NewWindow.
document.write ("<img class='zoomimg' src='");
NewWindow.
document.write (cPicture);
NewWindow.
document.write ("'>");
NewWindow.
document.write ("</a>\n");
NewWindow.
document.write ("</body>\n</html>");
NewWindow.document.close();
return false;
}
