function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function getSize( picture ){
	var image = new Image();
	image.src = picture;
	image.onload = function (){
		var width  = image.width > 0 ? image.width+20 : 650;
		var height  = image.height  > 0 ? image.height+20 : 490;
		openPreview(picture, width, height );
	}
}

function openPreview(picture, width, height) {
  var width  = width ? width : 620;
  var height  = height ? height : 470;
  var config = 'width='+width+', height='+height+', toolbar=no,location=no,directories=no,status=no,menubar=no';
  F = window.open('','', 'scrollbars=no, resizable=yes,'+config);
  F.document.write('<html><head><title>Maine Coon vom Pommerland</title></head><body style="margin:5px;padding:5px;">');
  F.document.write('<img src="'+picture+'" style="cursor:pointer" onclick="self.close()" alt="Maine Coon vom Pommerland" title="[Fenster schlie&szlig;en]" />');
  F.document.write('</body></html>');
}
