// function for popup window - Start

var openPicWindow = null;
function openPicture(url,title,features)
{
  properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,menubar=no";
  openPicWindow = window.open('empty.html','openPicWindow',features + ", "+properties);
  openPicWindow.document.open();
  openPicWindow.document.write('<html>');
  openPicWindow.document.write('<head>');
  openPicWindow.document.write('<title>'+title+'</title>');
  openPicWindow.document.write('</head>');
  openPicWindow.document.write('<body bgcolor="#FFFFFF">');
  openPicWindow.document.write('<table border="0" style="width:100%; vertical-align:middle"><tr><td><center><table border="0"><tr><td><a href="javascript:self.close()">');
  openPicWindow.document.write('<img name="image" src="'+url+'" border="0" alt="Zum Schliessen ins Bild klicken">');
  openPicWindow.document.write('</a></center></td></tr></table></td></tr></table></center>');
  openPicWindow.document.write('</body>');
  openPicWindow.document.write('</html>');
  openPicWindow.document.close();
  openPicWindow.focus();
}

// function for popup window - End
