//Bilder zoomer
function zoomImg(src) {
	src = src.substr(0, src.length - 4) + "_zoom.jpg";
	var strHtml = "<html>" +
					"<head>" +
						"<title>Thaler-System GmbH</title>" +
					"</head>" +
					"<body topmargin=0, leftmargin=0; bottommargin=0 rightmargin=0>" +
					"<div align='center'><a href='javascript:window.close();' title='[X] schließen'><img src = '" + src + "' border='0'></a></div>" +
					"</body>" +
				"</html>";
	win = window.open('zoomImg.html', 'zoom', 'height=304, width=404');
	win.document.write(strHtml);
	win.focus();
}
//-->
