function popup(url,name,einstellungen)
	{
	window.open(url,name,einstellungen);
	}
	
function popUpImg(img) {
   myImg = new Image();
   myImg.src = img;
   var width = myImg.width;
   var height = myImg.height;
   imgWin = window.open('', 'imgWinName', 'width=' + width + ', height=' + height);
 
   with (imgWin.document) {
      open();
      write('<html>');
      write(' <head>');
      write(' <title>PURALIS GmbH</title>');
      write(' </head>');
      write(' <body style="margin: 0px;" onLoad="self.focus();">');
      write(' <a href="" onClick="javascript:self.close()">')
      write(' <img src="' + img + '" alt="" title="" border="0"></a>');
      write(' </body>');
      write('</html>');
      close();
   }
}