if (top != self) top.location.href = self.location;

function janein(url) {
	if (confirm('Möchten Sie eines meiner Fotos\nauf Ihrer Homepage verwenden?')) {
		self.location.href = 'http://www.panoptikum.net/links/backlink-bild.php?u=' + escape(url);;
	}
}

function rechtsKlick(e) {
	url = this.src;
	if (navigator.appName.indexOf('Microsoft') >= 0) {
		if (event.button == 2 || event.button == 3)
		janein(url);
	}
	else {
		if (e.which == 2 || e.which == 3)
		setTimeout("janein(url)",200);
	}
}

for(i = 0; i < document.images.length; ++i) {
	if(document.images[i].name == 'bild1')
		document.images[i].onmousedown = rechtsKlick;
}

