// Copyright Marcus Haas
function init() {
	if (document.getElementsByTagName("IMG")[0]) {
		var images = document.getElementsByTagName("IMG");
		for ( var i=0; i<images.length; i++ ) {
			if (images[i].getAttribute('class') == "popup")
				images[i].onclick = function () {showimg(this.src,this.alt)};
			images[i].style.cursor="pointer";
		}
	}
}
function showimg(src,alt) {
	bild_window = window.open("","Bild","toolbar=no,width=800,height=550,directories=no,scrollbars=yes,status=no,menubar=no,resizable=yes");
	bild_window.document.writeln('<html><head>');
	bild_window.document.writeln('<title>'+alt+'</title>');
	bild_window.document.writeln('</head><body onblur="self.close()" style="overflow:auto;"><img src="'+src.replace(/thumbs/,"bilder")+'" alt="'+alt+'" />');
	bild_window.document.writeln('<div style="position:absolute;right:3px;bottom:30px;"></div>');
	bild_window.document.writeln('</body></html>');
	bild_window.document.close();
	bild_window.focus();
}