
window.onload = init;
function init(){
	if (self != top) {
		top.location.href=self.location.href;
	}
	if (document.getElementById("buecher").getElementsByTagName("IMG")) {
		cover = document.getElementById("buecher").getElementsByTagName("IMG");
		for (i=0;i<cover.length;i++) {
			cover[i].onclick = function () {show(this.src,this.alt)};
			cover[i].style.cursor="pointer";
		}
	}
	if (document.getElementById("buch")) {
		document.getElementById("buch").onclick = function () {show(this.src,this.alt)};
		document.getElementById("buch").style.cursor="pointer";
	}
}

function show(src,alt) {
	var bild_window = window.open("","Buchcover","toolbar=no,width=600,height=600,directories=no,scrollbars,status=no,menubar=no,resizable=yes");
	bild_window.document.writeln('<html><head><title>'+alt+'</title></head><body onblur="self.close()" style="height:100%;background: url('+src.replace(/cover/,"cover/big")+') rgb(255,255,226) no-repeat center;color: rgb(31,49,127);"><div style="position:absolute;right:3px;bottom:3px;"><a href="javascript:" onclick="self.close()">Schließen</a></div></body></html>');
	bild_window.document.close();
	bild_window.focus();
}