	function bigger(name,filename,width,height,description)
	{
		scndwindow=window.open("about:blank","Bigger","width="+width+",height="+height+",scrollbars=yes,resizable=yes");
		scndwindow.focus();
		with(scndwindow.document) {
			open();
			write(
				"<html>",
				"<head>",
				"<meta http-equiv='Content-Language' content='de'>",
				"<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>",
				"<link rel='stylesheet' type='text/css' href='/style_noimage.css'>",
				"<title>"+name+"</title>",
				"</head>",
				"<body>",
				"<img src='"+filename+"' alt='"+name+"' border='1'><br>",
				description,
				"</body>",
				"</html>\n\n"
			);
			close();
		}
	}
